Viewing 15 posts - 5,176 through 5,190 (of 7,168 total)
I got bcp working!
Here's how:
1. Open SQL Server Configuration Manager and go to the Named Pipe Properties of your instance.
2. Change the value to:
\\.\pipe\sql\query
Note: if your 2000 instance, the old...
August 25, 2011 at 10:04 am
Have you ever used sp_MSForeachDB? It is an undocumented procedure otherwise I would provide a link to BOL for you.
What you want to do is call sp_MSForeachDB and provide an...
August 24, 2011 at 5:26 pm
Welcome to the site Christi! Please post back to this thread once your blog is up and running. Lots of people add their blogs to their signatures around here too...
August 24, 2011 at 4:59 pm
chumphrey 12211 (8/24/2011)
August 24, 2011 at 4:36 pm
With ample hardware you should be fine mirroring 9 DBs. The upper bound has to do with how many worker threads required by each mirroring session (i.e. sessions are per...
August 24, 2011 at 3:03 pm
Anam Verma (8/22/2011)
HiIf i use the following command,
ALTER DATABASE [dbName]
SET SINGLE_USER
WITH ROLLBACK IMMEDIATE;
GO
will it kill all the processes on the database and rollback transactions if required?
Yes. I would...
August 24, 2011 at 2:55 pm
chumphrey 12211 (8/22/2011)
August 24, 2011 at 2:16 pm
gmamata7 (8/21/2011)
I went through the link http://www.sqlskills.com/blogs/paul/category/CHECKDB-From-Every-Angle.aspx
and it says DBCC CHECKDB won't cause blocking.
But, In my case blocking happening only when DBCC CHECKDB runs.
So how can we rule out...
August 24, 2011 at 2:07 pm
I have always written scripts to pull reports from the databases directly to show what was in place. You can find lots of examples online (this site has a bunch...
August 24, 2011 at 11:53 am
arpitsinghal.tcs (8/24/2011)
I want to import data from flat file into SQL Server table using SQL CLR ..
Also, we need to do some manipulation /formating of the datetime column
Size of...
August 24, 2011 at 11:48 am
julia.streatfield (8/24/2011)
August 24, 2011 at 9:20 am
sleipner (8/22/2011)
August 23, 2011 at 5:27 pm
If it is only for tables and SPs then you can use this:
EXEC sys.sp_helprotect
@username = 'role_name' ;
If you need to whole picture you'll have to...
August 23, 2011 at 4:09 pm
I have not seen that one either. Google yielded this thread...related?
http://www.sqlservercentral.com/Forums/Topic1125956-357-1.aspx
August 22, 2011 at 1:30 pm
What is your ActiveX script doing? Evaluate whether you're running into an issue because the DTS pkg is trying to load a 32-bit binary into a 64-bit process.
August 22, 2011 at 1:28 pm
Viewing 15 posts - 5,176 through 5,190 (of 7,168 total)