Viewing 15 posts - 2,176 through 2,190 (of 2,636 total)
I like to repair bicycles. In the spring, when my coworkers are starting to think about summer riding, I'll have 1 or 2 bikes to work on in my garage...
December 13, 2005 at 5:56 pm
Mark,
You can't remove the identity property from a column without recreating the table. You can use SET IDENTITY_INSERT to allow insertion values, but you can't remove the property permanently.
Greg
December 5, 2005 at 12:48 pm
No way that I know of unless it's logged in msdb's t-log. If it is, a log reader like Lumigent's Log Explorer or Apex SQL's Log would retrieve it.
Greg
December 2, 2005 at 12:32 pm
Would you describe your DTS package in more detail? What tasks and connections are in the package and what is the workflow?
Greg
December 2, 2005 at 12:28 pm
Phil,
Look at this article by Robert Marda: http://www.sqlservercentral.com/columnists/rmarda/howdynamicsqlcanbestatic2.asp
It helped me rewrite a dynamic query in a stored procedure into a static query with the same performance and nearly the same...
November 23, 2005 at 3:18 pm
It shows up that way on some of my servers too. I read one theory that the query might return 'Disabled' if the license mode was set to per processor...
November 17, 2005 at 11:07 am
No difference. SQL Server 2000 works the same way.
November 17, 2005 at 9:38 am
Lotta posts this afternoon, Adam. Got a quiz tomorrow?
Native SQL Serve backups don't require the server to be offlilne and most 3rd party backup...
November 16, 2005 at 5:50 pm
Oh, sorry. Try this:
SELECT SERVERPROPERTY('licensetype')
I'm not positive this works with v7.0. Another way to find the license mode is to look at SQL Server 2000 Licensing in the servers's Control...
November 16, 2005 at 3:14 pm
Hi Sonia,
You can use either BCP or DTS to load the data from text file to table. Both can be scheduled in a SQL Server job. Both are pretty well...
November 16, 2005 at 10:28 am
Run this in Query Analyzer:
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY('productlevel'), SERVERPROPERTY ('edition')
Greg
November 16, 2005 at 9:28 am
Have you tried SQL Scan from Microsoft? It's part of a bundle they released following the Slammer worm. We use it and it seems to find all instances.
Greg
November 9, 2005 at 10:33 am
Did you rename the steps or the tasks? Step names are what appear in the package logs.
Greg
November 8, 2005 at 4:17 pm
As far as I know permissions for DBCC commands can't be granted to users, only to roles.
November 3, 2005 at 3:06 pm
Viewing 15 posts - 2,176 through 2,190 (of 2,636 total)