Search Results

Showing results 1 to 40 of 52
Search took 0.01 seconds.
Search: Posts Made By: Geek-Master ; Forum: MS SQL and child forums
Forum: MS SQL 1 Day Ago
Replies: 1
Views: 162
Posted By Geek-Master
I did some more digging after I posted this and came across the COLLATE keyword. At first I thought this was only used to set columns and the database to a certain collation at creation of the...
Forum: MS SQL 2 Days Ago
Replies: 1
Views: 162
Posted By Geek-Master
Currently our database is set to case-insensitive so when I search for the word "Math" I can get "MATH" or "Math" and even "math". Now I would like to run a script that searches for any word that is...
Forum: MS SQL Mar 15th, 2009
Replies: 3
Views: 562
Posted By Geek-Master
Hi dickersonka,
Thanks for the info. If you don't mind me asking, how many connections does your VMs get on average and how big are your databases? I'd like to know, because our connections will...
Forum: MS SQL Mar 8th, 2009
Replies: 3
Views: 562
Posted By Geek-Master
Has anyone moved their SQL Server's into a virtual environment using VMware? If so, what has your experience been like?

thanks,
GM
Forum: MS SQL Mar 8th, 2009
Replies: 1
Views: 755
Posted By Geek-Master
You really didn't need to create a new thread since this still relates to your previous one.
Forum: MS SQL Mar 8th, 2009
Replies: 2
Views: 3,226
Posted By Geek-Master
Looking at the error message about NOLOCK, I came across this article from Microsoft http://support.microsoft.com/kb/815008. But, this is for SQL Server 2000, which you said you are using 2005....
Forum: MS SQL Mar 8th, 2009
Replies: 4
Solved: SQL Query Help
Views: 546
Posted By Geek-Master
Sounds more like you need to update the existing records that have a group id of 7 and change those to 12, but if you need both groups to be related to the same products as ID 7, then an insert...
Forum: MS SQL Mar 8th, 2009
Replies: 3
Views: 945
Posted By Geek-Master
I remember with SQL Server 2005 Express, Microsoft had a separate install package that did not include the Full-Text support. You may want to check for a SQL Server 2008 package that includes...
Forum: MS SQL Mar 8th, 2009
Replies: 10
Views: 1,707
Posted By Geek-Master
Personally, I would refrain from using any data transformations in this manner. Changing the data being inserted by the user does comply with the check constraint, but it alters what the user is...
Forum: MS SQL Mar 5th, 2009
Replies: 4
Views: 1,450
Posted By Geek-Master
Ramy's and MSI's solutions work perfect if you have to use the LIKE clause, but DATETIME data types need to be handled differently. I would recommend not using the LIKE clause and going with the SQL...
Forum: MS SQL Mar 5th, 2009
Replies: 10
Views: 1,707
Posted By Geek-Master
I haven't ever looked at creating constraints yet, most of my time has been looking at maintenance plans. So this is still new to me, but all of the examples I have seen are a static pattern. None...
Forum: MS SQL Mar 5th, 2009
Replies: 2
Views: 2,466
Posted By Geek-Master
If your table has multiple records per employee as in

EmployeeID, EmployeeName
------------------------------------
12345, John Smith
12346, Jane Doe
12345, John Smith
12347, Bob Smith

You...
Forum: MS SQL Mar 5th, 2009
Replies: 1
Views: 503
Posted By Geek-Master
Take a look at the PIVOT command in Books Online.
Forum: MS SQL Mar 5th, 2009
Replies: 10
Views: 1,707
Posted By Geek-Master
Most likely you will not be able to do this using a simple insert or update sql statement, so you will need to create a stored procedure to handle this task. I'm not exactly sure what functions exist...
Forum: MS SQL Feb 23rd, 2009
Replies: 2
Views: 490
Posted By Geek-Master
If you have any basic questions, most of them can be answered by reading SQL Server's Books Online at http://msdn.microsoft.com/en-us/library/ms130214.aspx. This is a must have for anyone working...
Forum: MS SQL Feb 2nd, 2009
Replies: 2
Views: 892
Posted By Geek-Master
Using the like constrait with '%00' would work for this sample, but would still require the human eye to make the associations with each possible duplicate. I'm not exactly sure what the solution...
Forum: MS SQL Oct 25th, 2008
Replies: 2
Views: 757
Posted By Geek-Master
In both SQL 2000 and 2005 you can run this query using the information_schema.columns

SELECT
data_type,
column_name
FROM information_schema.columns
WHERE table_name = 'table'

This...
Forum: MS SQL Oct 25th, 2008
Replies: 3
Views: 991
Posted By Geek-Master
This is just a suggestion, but you might want to normalize that table into two separate tables: TicketMaster and TicketMessages.

TicketMaster
id (int)
inserted (smalldatetime)
lastUpdated...
Forum: MS SQL Oct 25th, 2008
Replies: 5
Views: 1,766
Posted By Geek-Master
It is rare that you would want to give someone complete access to all the objects pertaining to a schema. An example would be the HumanResources schema which has sensitive material that not all...
Forum: MS SQL Oct 25th, 2008
Replies: 2
Views: 1,472
Posted By Geek-Master
I'm not sure if this will help your case but from what you are asking it sounds like you want to group records based on an attribute and determine the maximum value of each attribute.

If you have...
Forum: MS SQL Oct 25th, 2008
Replies: 5
Views: 1,766
Posted By Geek-Master
But 2005 allows you to grant users the right to run SQL statements to individual schemas. I do understand that schemas are collections of database objects, but it seems SQL 2005 is mixing the...
Forum: MS SQL Oct 20th, 2008
Replies: 5
Views: 1,766
Posted By Geek-Master
In this example I'm using the AdventureWorks database in MS SQL Server 2005

I was wondering what other people thought about Schemas vs. Roles when it comes to security access. If you have an...
Forum: MS SQL Jan 4th, 2008
Replies: 6
Views: 1,129
Posted By Geek-Master
Just to add on what version I'm running is that it is SQL 2000.
Forum: MS SQL Jan 4th, 2008
Replies: 6
Views: 1,129
Posted By Geek-Master
I emailed the list server for our vendor and I was informed that the table I'm working with used to not start at 1 for every individual's sequence number. So they updated it a while back. I was using...
Forum: MS SQL Jan 4th, 2008
Replies: 6
Views: 1,129
Posted By Geek-Master
Thanks mellamokb for the reply and the code. I ran what you created and there is only one error that shows up. It doesn't like the t1.ID_NUM on the where statement t2.ID_NUM = t1.ID_NUM. It tells me...
Forum: MS SQL Jan 3rd, 2008
Replies: 6
Views: 1,129
Posted By Geek-Master
Hey everyone,

This problem I've been working with has got me stumped. Let me show you the table layout first.

ID_NUM int,
SEQ_NUM int,
ATTRIBUTE_CODE char(2),
ATTRIBUTE_DEF char(50),...
Forum: MS SQL Oct 5th, 2007
Replies: 1
Views: 1,570
Posted By Geek-Master
Has anyone attempted virtualizing Microsoft SQL Server 2000/2005 using VMWare or MS Virtual Server? I've heard from others in the field that they wouldn't virtualize a database server relating to...
Forum: MS SQL Jul 10th, 2007
Replies: 2
Views: 1,446
Posted By Geek-Master
What version is your SQL Server: 2000 or 2005? Also what edition is your SQL Server: express, evaluation, developer, workgroup, standard, or enterprise?
Forum: MS SQL Jul 10th, 2007
Replies: 1
Views: 1,351
Posted By Geek-Master
are you using the command line tool OSQL?
Forum: MS SQL Jul 10th, 2007
Replies: 2
Views: 1,603
Posted By Geek-Master
I would check your collation schema for that database. For those who don't know what I'm talking about. A collation defines how SQL will handle unicode characters. Most likely you have your collation...
Forum: MS SQL Jul 9th, 2007
Replies: 5
Views: 873
Posted By Geek-Master
Well it really doesn't matter if the two databases are on different servers. All that you need to know is that you must have access to both servers. Then use DTS to copy the table object over.
...
Forum: MS SQL Jul 8th, 2007
Replies: 5
Views: 873
Posted By Geek-Master
I am assuming that both databases are on the same SQL Server instance. If you want to transfer a table between databases, try using DTS if you are on SQL 2000. There should be a method for...
Forum: MS SQL Jul 6th, 2007
Replies: 1
Views: 2,553
Posted By Geek-Master
For starters, I did notice that your right hand column is spelt different. Should it be op.OpportunityID?
Your Code
WHERE OpportunityID = op.OpportunituID
Possible Correction
WHERE OpportunityID...
Forum: MS SQL Jul 6th, 2007
Replies: 7
Views: 11,992
Posted By Geek-Master
As a long term fix, I would suggest altering the data table to include a code or date field to go by in the future. That's if you have authorization to alter the data table.
Forum: MS SQL Jul 5th, 2007
Replies: 2
Views: 4,146
Posted By Geek-Master
It really depends on what version of SQL Server you are using. SQL 2000 requires that you have Outlook installed on the server that is hosting SQL. On the other hand, SQL 2005 is using SMTP instead...
Forum: MS SQL May 8th, 2007
Replies: 1
Views: 4,224
Posted By Geek-Master
Since there is an OLE DB for Directory Services, can you do more than view AD objects? ADSI is an OLE DB provider and it can, so can you manipulate AD using SQL queries once you establish a linked...
Forum: MS SQL Apr 11th, 2007
Replies: 8
Views: 18,910
Posted By Geek-Master
On another forum they showed me that this was supposed to be better than what I was coding.

SELECT *
FROM tableA a
WHERE NOT EXISTS
(
SELECT *
FROM tableB b
WHERE a.id_num = b.id_num
...
Forum: MS SQL Apr 11th, 2007
Replies: 8
Views: 18,910
Posted By Geek-Master
I did find this to work, but would like to know if there is a better way.

SELECT tableA.* FROM tableA LEFT JOIN tableB
ON tableA.id = tableB.id
WHERE tableB.id IS NULL
Forum: MS SQL Apr 11th, 2007
Replies: 8
Views: 18,910
Posted By Geek-Master
The ON clause will only look for ID numbers that are equal to each other.

ON a.id_num = b.id_num

how can I join the two tables to show only the distinct records in table [a].
Forum: MS SQL Apr 11th, 2007
Replies: 8
Views: 18,910
Posted By Geek-Master
I found the EXCEPT operator for SQL 2005, but I don't think it's available in SQL 2000. What alternative can you use?
Showing results 1 to 40 of 52

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC