Viewing 13 posts - 16 through 28 (of 28 total)
During creation new db, the model database is open. Check sp_who2, and if necessary kill proces using model database.
May 22, 2006 at 9:57 am
You don't need to keep "drop #temptable" in your sp.
This table exists only during executing this sp and is recreated every time you run sp.
May 22, 2006 at 9:53 am
It's not possible to kill extended stored procedures (xp) using kill statement. Am I right ?
May 22, 2006 at 9:33 am
I don't think that it is possible with sp_MSforeachtable, but why don't use systems table, eg.:
SELECT object_name(id), rows
FROM sysindexes
WHERE indid IN...
April 6, 2006 at 9:58 am
Hi Ryan,
it seems that works, I'm going to check this against my table which is huge, so it might takes a lot of time.
Best regards,
dobrzak
March 17, 2006 at 5:30 am
Hi,
I dont have any gaps between data, startdate can be different than 1st of a month and EndDate can be different than 31st. I want show the entire price history for...
March 17, 2006 at 3:47 am
Sorry for confused you
This is only example, I write this myself and didint't notice that date was wrong, I'm really sory. But in...
March 17, 2006 at 3:03 am
Hi, I have column datatime, but I have problem in this case:
Item |StartDate |EndDate | Price
1 1/1/2004 ...
March 17, 2006 at 2:43 am
Viewing 13 posts - 16 through 28 (of 28 total)