Viewing 15 posts - 946 through 960 (of 1,315 total)
Just to clarify your terminology, you can't create a SQL login and map it to a Windows login. You can create logins on the SQL Server for Windows users and...
December 11, 2005 at 4:16 pm
Can you make the Remaining parameter a field in the returned recordset?
December 11, 2005 at 3:05 pm
I've been around long enough to know that there is a wide spectrum from early adopters to "If it ain't broke, don't fix it" attitudes out there, and many reasons...
December 9, 2005 at 1:39 pm
There is a Description property available for each field and table in either Enterprise Manager or Management Studio. It's an simply an extended property named "Description". sp_addextendedproperty will let you add...
December 8, 2005 at 2:55 pm
Another option might be to use Generate SQL Script in Enterprise Manager. Select all the desired objects and look at the formatting options to make sure you get everything (indexes,...
December 8, 2005 at 1:38 pm
SQL Server/Access would be the cheapest/easiest route. Migrate the data to SQL Server 2005 Express (which is free), and either keep the existing Access front end or migrate to a...
December 8, 2005 at 11:56 am
You could do it all in a SQL task:
WHILE NOT (...) WAITFOR DELAY '00:05:00'
December 8, 2005 at 11:28 am
I didn't want my reply to Todd to sound testy. I believe he was expressing an honest opinion when he said he had only seen minimal speed differences. I have...
December 8, 2005 at 9:42 am
I don't want this to sound like a flame, but if you haven't seen a speed difference between a DTS data pump task and a bulk insert then either you...
December 7, 2005 at 5:06 pm
Create a dummy SQL user in each role, and then the admin users can use SETUSER to impersonate a user in any role.
December 7, 2005 at 8:26 am
I guess it would depend on how much the specific functions optimize the operation compared to a general-purpose function. Run some tests and see if there is a noticable time...
December 6, 2005 at 3:38 pm
The standard ultra-ultra-conservative reaction is you don't use the first release of anything in production. Like my father would never buy a car the first year...
December 6, 2005 at 9:25 am
I ran into this often enough to create a general-purpose function. The @type parameter should have a bit set for every class of character you want returned; 1=alphabetic, 2=numeric, 3=alphanumeric, 7=alphanumeric...
December 6, 2005 at 9:00 am
use
msdb
-- Find the Job ID and the step numbers involved
declare @new_step int
declare @jobid uniqueidentifier
select @jobid...
December 6, 2005 at 8:45 am
I think it's spelled out better in the SQL 2005 documentation:
"SET ANSI_NULLS ON only affects a comparison if one of the operands of the comparison is either a variable...
December 5, 2005 at 7:58 pm
Viewing 15 posts - 946 through 960 (of 1,315 total)