Viewing 15 posts - 91 through 105 (of 152 total)
You know, if I had control over Diskkeeper and the other aspects of the server, this would be easier. I will check with the network/hardware folk, and see how they...
May 11, 2004 at 10:00 am
It sounds as if the actual generation of the Identity is not in the scope of the call to SQL Server. For example (since I know nothing of the structure...
May 11, 2004 at 9:56 am
This assumes that the combination of ID values is unique -- specifically, that the roleModule_ID field is a unique identifier of some sort for the table.
May 11, 2004 at 9:51 am
With apologies to Nancy White
In Dilbertlandia, Everyone's a bozo
Nobody's got a brain (oooh! oooh!)
January 14, 2004 at 10:01 am
January 14, 2004 at 8:12 am
Well, currently I am the working DBA for the system, and all my knowledge sort of 'accreted' to me on an as-needed basis, from web sites, BOL, and trial and...
January 14, 2004 at 8:06 am
Good point. We are looking for both, of course. Management specs are for a Production DBA with Development skills, especially in...
January 13, 2004 at 10:19 am
When returning variables from dynamic SQL, it is easier and cleaner to use the sp_executeSQL stored proc.
Declare @mySQL nvarchar(500)
Declare @myParms nvarchar(100)
Declare @var1 int, @var2 int
SET @mySQL = N'SELECT
January 5, 2004 at 2:30 pm
Interesting. It would be simple enough to implement with a constraint + a trigger, but the trigger would be enough, so the constraint is not needed.
Considering what a constraint's...
November 25, 2003 at 10:46 am
A lot of debate, and good debate (IMO) where it comes to this question. Looking it over, I see that I made some assumptions about this table as well....
November 21, 2003 at 11:17 am
Stored procedures are "precompiled". From BoL:
[Stored Procedures] allow faster execution.
If the operation requires a large amount of Transact-SQL code or is performed repetitively, stored procedures can be faster...
November 11, 2003 at 5:34 pm
So, basically you need to update if (a) it is new, or (b) it is changed since last week, yes?
First, we need to get some code to identify the last...
November 7, 2003 at 6:37 pm
Absolutely. This is because, no matter how much it seems that it should work, each of the calls to the server is a separate process. To return the...
November 7, 2003 at 6:26 pm
Which step is it that takes more time? Or is it that all steps take more time?
November 4, 2003 at 2:59 pm
THe techniques used here depend on what exactly you need to do.
For example, if what you needed to do was to update the SalesRep on your customers (because one rep...
October 27, 2003 at 12:24 pm
Viewing 15 posts - 91 through 105 (of 152 total)