Viewing 15 posts - 106 through 120 (of 266 total)
Only other way I can think of is to
Create table...on [secondary]
and then insert the recs. Select into doesn't allow the 'on filegroup' option.
April 18, 2005 at 12:09 pm
First off: I have no idea.
Secondly: Could a work around help? Instead of trying to schedule the jobs, could you have the DTS package call them? Then...
April 18, 2005 at 11:58 am
Read the SQL Books Online. Get a machine that you can install SQL Server on and play. Go to microsoft.com as they have some labs that you can...
April 14, 2005 at 8:58 am
You can then reattach your database on the test server.
Differences:
1. Size - The backup file may be smaller than the mdf+ldf files which will help the transfer move faster.
2....
April 12, 2005 at 12:05 pm
This example has helped me in the past:
March 29, 2005 at 1:24 pm
We had major problems with using a Third-Party imaging software to build SQL Servers. The Transaction Coordinator for SQL Server (used when you have linked servers and are running...
March 24, 2005 at 12:59 pm
I run xp_fixeddrives on all my servers and it outputs a list of free space on each drive. You could insert that into a table, or have a SQL...
March 22, 2005 at 3:44 pm
Did you recently place some databases in 'offline' status?
If so, you need to open query analyzer and run
--To bring a database back online
sp_dboption @dbname = 'dbname' ...
March 2, 2005 at 2:50 pm
In our shop we usually push from AS/400 to SQL and every once in a while the connection fails. We've had IBM, the network guys, the AS\400 hardware people...
February 3, 2005 at 8:25 am
My apologies on the subject line...I was so excited to see this posted in DotNetJunkies that I forgot our own Steve, Andy et.al have sent much help to the region.
Is...
January 27, 2005 at 6:02 am
Doubt this will help much:
I have 1788416 in the item count and 4330642 in the unique key count and performance is more than acceptable for my users.
January 5, 2005 at 1:47 pm
The problem with Identity_Insert is it can only be set on one table in a database at a time. So if you
SET identity_insert tableA ON
then will not be...
January 3, 2005 at 12:56 pm
You have to be db_owner to grant the rights, but you can give the user the right to insert without granting db_owner rights.
GRANT INSERT ON tablename
TO username (appears in...
January 3, 2005 at 12:20 pm
Yes...Open Enterprise Manager. Right click on the server and choose Properties. At the bottom of the General tab, you can place a checkmark to 'Autostart SQL Server' and...
January 3, 2005 at 12:12 pm
If you need performance in your database, then consider placing the data and indexes on different filegroups which are on different drive arrays or LUNs. It makes the backup/restore...
January 3, 2005 at 12:03 pm
Viewing 15 posts - 106 through 120 (of 266 total)