Viewing 15 posts - 1,696 through 1,710 (of 7,429 total)
Split your tabels then load the old data values first for the base info. Then take the pay and run each item set and populate into the new table for...
June 30, 2004 at 5:42 am
This is because the largest daterange date SQL can handle is 12/31/9999. But when you add the time in it can only reach :998 which will float to :997, when...
June 30, 2004 at 5:36 am
Did you test the package on the machine the job is executing it from?
June 30, 2004 at 5:26 am
Are there any other processes running on the box to collect these backups to another location? Do you have any other maintainece jobs that might be interfering? The fact it...
June 30, 2004 at 5:24 am
No definently will be a job for DTS or a cutom application to read the contents of the remote page.
June 30, 2004 at 5:20 am
Don't know for sure. I usually just test a few options to see which gives best performance for the data in question, just make sure you run several times for...
June 30, 2004 at 5:18 am
It depedns on the size of your data. You cannot deffer the index updates in any way. You could however drop the indexes (non-clustered first then clustered as drop the...
June 30, 2004 at 5:15 am
Just for the sake of another option
where right(convert(char(8),mytable.datefield,112),4) = right(convert(char(8),getdate(),112),4)
June 29, 2004 at 9:46 am
If the name changes then it is a search and replace. You might go thru on your first build and create template tags for variable replacement to make this simpler.
June 29, 2004 at 5:37 am
But GUIDs are alphanumeric. The key for speed is the fixed length and size of data. Ultimately they are compared at the binary level.
June 29, 2004 at 5:36 am
Other than space in master to track their location it only matters if these Databases will not be needed for long with long times between use and are not set...
June 28, 2004 at 5:25 pm
That is actually found in the sysobjects table like so.
select object_name(o.parent_obj) [Parent Name], o.[name] [Index_Name], o.xtype Type, o.* from sysobjects o
where o.xtype in ('PK','UQ')
June 28, 2004 at 5:21 pm
Using the Export Wizard. Right click on a particular DB and under All Tasks you will find it.
June 28, 2004 at 5:08 pm
I tried that and it didn't work. DId you test?
June 28, 2004 at 3:12 pm
Viewing 15 posts - 1,696 through 1,710 (of 7,429 total)