Viewing 15 posts - 136 through 150 (of 13,460 total)
does the machine in question have more than one instance installed? could you have updated just one of the multiple instances on that machine to SP4 instead of all of...
Lowell
generating the schema scripts for tables/views/procs is easy in SSMS, but don't script the data. 60 gig of data is unmanageable as flat files, you want to use The import...
Lowell
it is not possible to restore a SQL database from a higher version to a lower version.
you can only restore from lower to higher versions.
you will have to use something...
Lowell
I think you want to convert the date to varchar, and if the results is NULL, use the string NULL
ISNULL(convert(varchar(20),@Date,GETDATE()),110),'NULL')
Lowell
by queries, i am guessing you mean tables, instead.
you can sue the metadata to script out the actual queries by getting the column names, is that what you are after?...
Lowell
have you set your max server memory to a low threshold, so it ends up clearing the procedure cache?
Lowell
in my experience, most performance problems come from coding that works, but performs poorly on large data sets.
as a result, i look at the code, here are some of the...
Lowell
ok the forum converts to varchar as well! so my nvarchar string characters got converted to question marks!
Lowell
your query did not appear, but i suspect it has to do with implicit conversions.
you have to use the N'' denotation to make sure SQL knows it is nvarchar data.
here...
Lowell
are you using a sliding partition strategy for archiving?
don't look at the file groups. file groups is how it is stored, and potentially archived. that is independent from the logical...
Lowell
Viewing 15 posts - 136 through 150 (of 13,460 total)