Viewing 15 posts - 361 through 375 (of 5,103 total)
-- Cranfield (3/3/2009)
How does the performance compare to native BCP OUT? should it be the same.cheers
BCP should OUTPERFORM this by far.
The problem is that it is NOT as...
* Noel
March 4, 2009 at 8:27 am
tomas.skopec (3/4/2009)
Thanks for great article.I would like to ask why are you putting source files into SQL assembly? I tought that compliled dll would be enought.
Thanks in advance,
Tomas
For Debugging!!
* Noel
March 4, 2009 at 8:24 am
Note that using nolock does not provides "accurate" values but it could serve as a "guesstimate"
* Noel
March 3, 2009 at 4:24 pm
SQL Dude (3/3/2009)
No, on this server it is lightly used, no large copies of files.Sorry, forgot to mention it is Standard Edition.
Not Even Backup Files ?
* Noel
March 3, 2009 at 4:22 pm
Yes it is an Enterprise Edition issue only.
Are you copying large files in or out of it ?
I have found that to be the culprit on my servers so I...
* Noel
March 3, 2009 at 4:01 pm
SA (3/3/2009)
This is Microsoft's recommendation, but what are other DBA's doing out there?
I haven't enabled...
* Noel
March 3, 2009 at 3:16 pm
dr_csharp (3/3/2009)
i have this :
Execute('Select 1 as [Test],* From myTable')
how can put a character instead 1 in column Test !?
i try this,but has error :
Execute('Select "A" as [Test],*...
* Noel
March 3, 2009 at 3:11 pm
SA (3/3/2009)
* Noel
March 3, 2009 at 3:08 pm
TRACEY (3/3/2009)
I know the seeks are better than scans...question is (the counts is based on last time sql shutdown or can you...
* Noel
March 3, 2009 at 3:01 pm
The best Application I have found people using virtualization with SQL Server is to reproduce (duplicate) DEV/QA/TEST environments.
* Noel
March 3, 2009 at 2:55 pm
Temp tables are scoped at procedure level. your "readuncommited" is what is causing this!
* Noel
March 3, 2009 at 2:28 pm
twdavis (3/3/2009)
I USED THIS SELECT AND IT HAD ALL THE INFORMATION I NEEDEDSELECT *
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'YOUR_TABLE_NAME' ORDER BY COLUMN_NAME
THANKS
keep in mind that information_schema "hides" the tables...
* Noel
March 3, 2009 at 2:00 pm
Take a look at this Jeff Moden article: http://www.sqlservercentral.com/articles/T-SQL/63003/
* Noel
March 3, 2009 at 1:56 pm
Unless you are doing special processing you should be able to code the trigger for multi-row changes...
If you are using an stored procedure to insert on the first table you...
* Noel
March 3, 2009 at 1:47 pm
1. Do I have to shutdown the distributor and subscribers if I need to restart only my Production?
From what I think, I dont need to....
* Noel
March 3, 2009 at 1:18 pm
Viewing 15 posts - 361 through 375 (of 5,103 total)