Viewing 15 posts - 2,911 through 2,925 (of 3,010 total)
Matt,
I think you should tell the network guys you're sorry for screwing up their machine and promise not to do it again.
March 6, 2007 at 9:29 pm
What did you find when you tested it to see what happens?
March 6, 2007 at 9:22 pm
If you have Internet Explorer Enhanced Security installed on the server, it will cause a message box to pop-up when you attempt to run an executable. Since there is no...
March 6, 2007 at 2:34 pm
Notice that is does not actually say that it does not break the connection of of qualified users, it only says that the breaks the connections of unqualified users.
I agree...
March 6, 2007 at 2:20 pm
That is not what it says in Books Online. It doesn't say that it does not break their connection.
From SQL Server 2000 books Online:
Controls which users may access the database....
March 6, 2007 at 1:41 pm
It is OK to drop a temp table created in a stored procedure, and I posted code that shows you how to do this.
There is no good reason to drop...
March 6, 2007 at 8:17 am
You will not be able to do what you want, because they are not your tables to drop.
There is no good reason to do what you are trying.
March 6, 2007 at 8:00 am
This code only works correctly if the temporary object is a table:
IF OBJECT_ID('TempDB..#MyTemp') IS NOT NULL DROP TABLE #MyTemp
This check makes sure it is a table:
if exists ( select * from tempdb.dbo.sysobjects o where o.xtype in...
March 6, 2007 at 7:14 am
Here is a free utility that will handle the DST time zone updates for windows machines running XP, NT, 2000, 2003, Vista. It updates Daylight Saving Time in these time...
March 5, 2007 at 8:19 am
What is a "grid cell"?
What does your application do?
March 2, 2007 at 10:29 pm
Yu need to put the square root of the number of rows needed, ( convert(int,ceiling(sqrt(abs(@START_NUMBER-@END_NUMBER)+1))) ), into a temp table using the F_TABLE_NUMBER_RANGE function, and then cross join the temp table...
March 2, 2007 at 8:20 pm
Either of these should do it.
select stuff(rtrim(acct_id),7,len(acct_id)-10,replicate('0',len(acct_id)-10)) from ( select acct_id =convert(char(19),'387643098846789 ') ) A
select left(acct_id,6)+replicate('0',len(acct_id)-10)+right(rtrim(acct_id),4) from ( select acct_id =convert(char(19),'387643098846789 ') ) A
March 2, 2007 at 6:53 pm
Use the F_TABLE_NUMBER_RANGE function on this link:
March 2, 2007 at 6:12 pm
It's seems really common from the posts I read. Check out this ongoing thread with links to posts of people that need to restore but don't have backups. A lot of people seem to...
March 1, 2007 at 9:53 am
So you are not working with SQL Server then.
March 1, 2007 at 7:19 am
Viewing 15 posts - 2,911 through 2,925 (of 3,010 total)