Viewing 15 posts - 2,371 through 2,385 (of 5,394 total)
You could use the migration assistant or simply SSIS.
If you're not comfortable with SSIS, you can set it up with the Import/Export wizard and save it as package for further...
November 15, 2011 at 4:02 am
If your database is maintained properly (I'm assuming it is), shrinking the data files will have no effect in the long run (files will likely grow again), so I think...
November 15, 2011 at 2:16 am
Roust_m (11/14/2011)
They are going to put a lot of records with nvarchar(max) values into a table (around 3 million). The table will grow from 3GB to 300GB and make...
November 15, 2011 at 2:10 am
Personally, I would change the collation for the whole database.
If this is the only database on the instance, I would also change the instance default collation, in order to avoid...
November 14, 2011 at 7:30 am
GilaMonster (11/14/2011)
Gianluca Sartori (11/14/2011)
With my powers of divination I foresee just a few more threads like this one and Gail taking a break from the forums again.:hehe:
I'm already taking a...
November 14, 2011 at 7:23 am
SQLRNNR (11/14/2011)
Gianluca Sartori (11/14/2011)
Congrats Jason for winning T-SQL challenge 63!Thanks - you were quick on that. I just got the email this morning.
Me too. Morning means night for you....
November 14, 2011 at 7:17 am
With my powers of divination I foresee just a few more threads like this one and Gail taking a break from the forums again.
:hehe:
November 14, 2011 at 6:21 am
memymasta (11/14/2011)
Is there a way?I would need to access NT AUTHORITY\SYSTEM to enable admin again...
Create a scheduled task in windows scheduler and set it up to run cmd.exe with...
November 14, 2011 at 3:46 am
Congrats Jason for winning T-SQL challenge 63!
November 14, 2011 at 2:15 am
I'm not a C++ developer, wouldn't know where to start.
This page on MSDN will probably help you: http://msdn.microsoft.com/en-us/library/ms130892(SQL.90).aspx
However, keep in mind that SQLNCLI OLE DB provider is a low-level,...
November 8, 2011 at 8:10 am
nilesh.ldce2007 (11/8/2011)
Thanx for help,Is SQLNCLI is same as OCI in Oracle..?
Yes
Is SQLNCLI provide their own API for connection or retrieval of data from SQL Server or use api of...
November 8, 2011 at 7:32 am
November 8, 2011 at 6:34 am
Roy Ernest (11/8/2011)
I am planning on a presentation for my user group "DBA MythBusters" (Courtesy Paul Randal) His idea is...
November 8, 2011 at 6:26 am
AFAIK DTS packages have always been stored in msdb, not in master.
select *
from msdb.dbo.sysdtspackages
The same applies to SQL Server 2005.
I don't think I understand the rest of your question. How...
November 8, 2011 at 5:51 am
You can connect to SQL Server using either ODBC, OLEDB or SQLNCLI (SNAC).
SQL Native client is a mix of OLEDB and ODBC, but that shouldn't be a concern.
The connection library...
November 8, 2011 at 5:44 am
Viewing 15 posts - 2,371 through 2,385 (of 5,394 total)