Viewing 15 posts - 13,621 through 13,635 (of 18,923 total)
I've actually never been there... maybe when I stopped in the USA.
September 1, 2005 at 3:07 pm
"But what if there isnt any date column in the table. All i need to check is the number of rows inserted in last 1 hour."
September 1, 2005 at 2:26 pm
Declare @T1 Table (id int Identity(1,1) not null primary key clustered, dude tinyint null)
Declare @T2 Table (id int Identity(3,1) not null primary key clustered, dude tinyint null)
Insert into @T1 (Dude)...
September 1, 2005 at 1:57 pm
If you want a specific sort order you MUST use order by. If you also need to use top use this syntax :
Select top 100 percent Cols from...
September 1, 2005 at 1:46 pm
Looks like I'm not the only guy who saw and remembers that film
.
September 1, 2005 at 1:40 pm
It takes a log explorer to do that (assuming recovery mode is set to full). There are a few reviews on this site for such products.
September 1, 2005 at 1:39 pm
Declare @ExecSQL as varchar(1000)
Declare @Dbname as varchar(50)
set @DbName = 'Joe_LeninL'
set @ExecSQL = '
BACKUP DATABASE ' + @DbName + ' TO DISK = ''K:\User_Databases\CFT_dbs\Data\' + @DbName + '\' + @DbName +...
September 1, 2005 at 1:38 pm
This is something that you need to code correctly to avoid errors. Just run the delete before the update and you'll be fine.... and make sure you update the...
September 1, 2005 at 1:26 pm
Select Cols from dbo.YourTable where DateCol between DateAdd(hh, -1, GetDate()) and GetDate()
September 1, 2005 at 1:19 pm
September 1, 2005 at 1:15 pm
Why would there have an error in the trigger?? This is a simple insert into from inserted/deleted with change type hardcoded in the triger and the time_stamp set with...
September 1, 2005 at 1:13 pm
You'd have to run all this code under dynamic sql with exec (@DynamicCode)
September 1, 2005 at 1:10 pm
I can only suggest you google : Sybase raiserror
Good luck.
September 1, 2005 at 1:06 pm
This is the most usefull english help I can find :
http://msdn.microsoft.com/library/?url=/library/en-us/acdata/ac_8_con_05_3f76.asp
September 1, 2005 at 11:53 am
Viewing 15 posts - 13,621 through 13,635 (of 18,923 total)