Viewing 15 posts - 3,076 through 3,090 (of 3,606 total)
Is Phone your primary key, if not is in indexed?
How may records are there in each table.
Where is your WHERE clause?
August 6, 2004 at 2:13 am
I passed the Ids of the listbox options as a VARCHAR and had a function to take that delimited list and return it as a table.
I could then join the...
August 6, 2004 at 2:08 am
It depends which table or tables have altered transactions.
You could have a table with two tinyint fields or you could have a table with 8060 bytes per record which includes...
August 5, 2004 at 10:05 am
http://www.sqlservercentral.com/columnists/sjones/movingmsdb.asp
http://www.sqlservercentral.com/columnists/sjones/moveyourmaster.asp
http://www.sqlservercentral.com/columnists/sjones/atemporarymove.asp
I'm not sure about moving the master to a completely separate box.
I can understand moving MSDB because of all the jobs etc, but I understood that master...
August 5, 2004 at 10:02 am
Registry setting HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLSERVER\MSSQLServer\BackupDirectory
I've got a great big list of what all these registry settings do somewhere and I plan to write them up as an article. It's just one of...
August 5, 2004 at 9:38 am
Another migration tool that I have used in the past is Datawatch Monarch. I'm not sure what it can do these days but at the time I was using it...
August 5, 2004 at 2:21 am
I can recommend a utility called DBMS copy.
The company that wrote it has been bought out by the SAS institute who sell it through their dataflux subsidiary.
August 5, 2004 at 2:06 am
I've not hit the magic billion but I have done 100's millions.
I used to take the production server down for a morning when I did it.
My approach was as follows
August 5, 2004 at 2:01 am
If you are going to block NULLs from the database you have to put checking in the client layer to ensure that there is no way that a user can...
August 4, 2004 at 9:14 am
Do you import it into NVARCHAR, NCHAR, NTEXT fields?
If you try and import it into VARCHAR, CHAR and TEXT fields then the characters will simply convert into the low byte...
August 2, 2004 at 5:01 am
If you are running stuff on server 1 and pushing to server 2 why not turn the problem on its head and run from server 2 and pull from server...
August 2, 2004 at 3:18 am
How are you copying the data?
Are your servers linked or remote.
I had a number of problems with remote servers. As you know BOL recommends the use of...
August 2, 2004 at 2:24 am
What login does the target server think you are?
What permissions does that login have?
I've found that if I create a login on one machine ,then copy that login to 2nd...
August 2, 2004 at 1:56 am
99% of the time I use ISNULL. It does what it says on the tin.
COALESCE is useful when you have to have some form of construct that is IF @a...
August 2, 2004 at 1:48 am
Depends on their caffeine intake
Seriously though, there are so many factors that determine how much administrative work needs to be done that it...
July 29, 2004 at 3:06 am
Viewing 15 posts - 3,076 through 3,090 (of 3,606 total)