Viewing 15 posts - 811 through 825 (of 2,038 total)
Good point Jeff. If there are more than four rows 😀 an inline query gets a bad performance.
One question:
Did you figure out if a cross join performs better than an...
May 23, 2009 at 1:26 pm
Hi
I'm no Powershell pro. But if you try to load CSV files into your database you should have a look at the SQL Server "bcp" command line utility or BULK...
May 23, 2009 at 1:15 pm
Jeff Moden (5/23/2009)
Florian Reischl (5/23/2009)
Jeff Moden (5/23/2009)
May 23, 2009 at 12:45 pm
Hi Barry
RBarryYoung (5/23/2009)
Florian Reischl (5/23/2009)
...For batch processing you need to query "sys.dm_exec_sessions" instead of "sys.dm_exec_requests".
Could you explain that some more Florian? What kind of situation would you need to...
May 23, 2009 at 12:41 pm
Jeff Moden (5/23/2009)
May 23, 2009 at 11:02 am
You can use a inline query:
DECLARE @t TABLE (Id INT)
INSERT INTO @t
SELECT 10
UNION ALL...
May 23, 2009 at 2:53 am
Generally I agree with Steve, Bruce and Jack.
However a column "Name" seems to be no problem in my book. In SSMS2k8 it is no keyword anymore. Real problems are real...
May 23, 2009 at 2:48 am
Hi Tim
If you are not sure if you are not sure about your SQL Server version you can execute this statement. It shows the detailed version information:
PRINT @@VERSION
If you use...
May 23, 2009 at 2:06 am
I heard several times people who stopped SQL Server service to get a copy. But I never heard somebody who killed the service from task manager to do this...
May 22, 2009 at 2:30 pm
May 22, 2009 at 1:44 pm
davew01 (5/22/2009)
May 22, 2009 at 1:43 pm
I'm not sure how they take the database copy but usually I would suggest to take a backup of the database to restore on your system.
May 22, 2009 at 12:52 pm
I'm not sure which kind of security you are looking for. If you try to avoid that somebody accidentally manipulates any data you should try "Read-Only" property of your database.
May 22, 2009 at 12:39 pm
Viewing 15 posts - 811 through 825 (of 2,038 total)