Viewing 15 posts - 376 through 390 (of 461 total)
What is the type of your SQL Server? Only the Enerprise version allows the use of partinioned views.
Also did you implement the check constraint on the partitioning column on each...
August 26, 2003 at 8:15 am
Here is what you want:
select convert(varchar, convert(datetime, '26/08/2003', 103), 1)
select convert(varchar, convert(datetime, '26/08/2003', 103), 1) + ' 10:00'
Bye
Gabor
August 26, 2003 at 6:29 am
Hi Nicolas,
What I would do is generate the DDL script with EM including create database.
That one you can run on the client server.
After you can BCP out all the data...
August 26, 2003 at 3:21 am
the xplog70.dll is also responsible for the xp_cmdshell
August 25, 2003 at 2:20 am
Did you check the cpu and the physical_io columns in the sysprocess table?
Also did you check if you have enough memory to handle SQLServer as well as the OS (and...
August 25, 2003 at 1:59 am
Frank,
You may have a German keyboard!
On a "normal" keyboard STRG calls CTRL
(Control anstatt Steuerung)
August 22, 2003 at 6:42 am
Or you do not have to put any NT shares on the machine, no "active work" on it (i.e. it should not work as a workstation) and of cours heavy...
August 21, 2003 at 4:57 am
And for the transaction logs (which is at least one er database) the best was is detach the DB move your files whereever you want and after attach it again.
It...
August 21, 2003 at 4:54 am
But Frank,
THIS IS A PRODUCTIVE DATABASE WHERE OVER 1000 PEOPLE ARE CONNECTED TO!!!
I won't play with rebuilding the master database within my maintenance windows.
It's is just too risky to do...
August 20, 2003 at 4:20 am
I'm not really proud of that solution because I don't like cursors but at least it works .
Here is an example based on the pubs database:
declare@t_au_ord table...
August 20, 2003 at 2:47 am
Frank,
What do you meen by estimating the db size?
Size of the existing or a planned db?
Because (and of cours you now it) you can use sp_spaceused, hp_helpdb,...
August 15, 2003 at 9:48 am
What about Log Explorer for SQL Server from Lumigent? www.lumigent.com.
They are doing selective data recovery as well.
But I don't know how much it will cost.
Gabor
August 15, 2003 at 9:15 am
Of cours I did.
See my previous notes.
sp_fixindex is doing dbcc dbreindex for all objects where object_id > 100 and dbcc dbrepair for all objects where object_id < 100.
And there I...
August 15, 2003 at 12:59 am
I think I will use C for this time. I just hate mixing up development languages.
The app. will run each morning in the login script each file has between 20...
August 14, 2003 at 2:33 am
So guys (special thanks to Frank and Tom),
It seems there is no real answer.
By the way Frank ich habe dein Mail erhalten. Danke)
The story concerning sp_fixindex...
August 13, 2003 at 1:03 am
Viewing 15 posts - 376 through 390 (of 461 total)