Viewing 15 posts - 1,066 through 1,080 (of 1,123 total)
You need to set the nested triggers option of server configuration settings to 0 to stop the engine from executing the trigger recursively using the following snippet...
USE master;
GO
EXEC sp_configure 'nested...
October 1, 2007 at 4:48 am
You can add column with a unique combination of the existing columns or you can use newid() function to have a 25 characters long unique value..
September 28, 2007 at 1:37 am
It would be better if we can have a filter for unanswered questions, in case if anyone wants to check for unanswered questions....:P
September 26, 2007 at 2:07 am
Thanks Ken for your response..
Initially, I'd the same thought of using Count as the criteria for filtering the rows..
The...
September 11, 2007 at 7:15 am
ECHO OFF
CLS
SET FilePath=C:\MySQLFiles\*.sql
SET MyServer=NameOfTheServer
SET MyLogin=LoginName
SET MyPassword=Password
SET MyDatabase=DefaultDB
FOR %%i IN (%FilePath%) DO osql -S%MyServer% -U%MyLogin% -P%MyPassword% -d%MyDatabase% -i%%i -o%%i.log
September 11, 2007 at 3:05 am
Andras, seems like you've a bad experiences with synonyms....
And also you can't have a synonym on a database...
The problem only yells at you when you have so many objects that...
September 10, 2007 at 8:13 am
Keeping aside the execution plans, the time constraint...here is one of the solns...
SELECT * FROM databaseimageslist
WHERE LOWER( DatabaseImagesList.Path + DatabaseImagesList.Directory + '\' + DatabaseImagesList.FileName ) NOT IN( SELECT LOWER(...
September 6, 2007 at 8:23 am
Keeping aside the execution plans, the time constraint...here is one of the solns...
SELECT * FROM databaseimageslist
WHERE LOWER( DatabaseImagesList.Path + DatabaseImagesList.Directory + '\' + DatabaseImagesList.FileName ) NOT IN( SELECT LOWER(...
September 6, 2007 at 8:23 am
Basic stuff...
SELECT COALESCE( WCAmount, 0 ) + COALESCE( WCHours, 0 ) AS Total FROM worktime
WHERE WCid = 'WC11111'
OR
SELECT ISNULL(
January 25, 2007 at 6:32 am
You might have a look at GUIDs...
SELECT
NEWID()
January 25, 2007 at 6:08 am
Jeff,
Thanks for your response...
Honestly saying, I doesn't have much idea about MLM systems...
January 23, 2007 at 10:34 pm
Anchelin,
Here is one of the ways to know the state of ther service...
EXEC master.dbo.xp_ServiceControl 'QUERYSTATE','SQLServerAgent'
Keep in mind that xp_ServiceControl is undocumented and unsupported as its...
January 23, 2007 at 6:16 am
Jeff,
Nothing much....it just sums up the incomes for which we all are working....a payroll process
When I started this post, I was in context for #tables & the user tables which...
January 23, 2007 at 5:01 am
Darth,
seems like still looking for a soln...to be left in the middle of the con
Looking at my query, I notice that i mistakenly used...
January 23, 2007 at 4:47 am
Viewing 15 posts - 1,066 through 1,080 (of 1,123 total)