Viewing 15 posts - 166 through 180 (of 789 total)
In SQL Server 2008 you can do copy only backup with GUI and you can script it as T-SQL, then creating the Maintenance Plan for schedule with that T-SQL.
January 14, 2010 at 2:08 pm
Jeffrey Williams-493691 (1/14/2010)
Dugi (1/14/2010)
Copy Only Backup with SSMS are supported just in SQL Server 2008!
Wrong - COPY_ONLY is not available when using the GUI in SSMS 2005, however - you...
January 14, 2010 at 2:04 pm
I really don't know why he or they want to do copy only backup with SSMS with schedule, for that reason if really they want to do it they can...
January 14, 2010 at 2:03 pm
Krasavita (1/14/2010)
Copy table with index and statistics,is anyone knows how I can copy table with indexes and statistics with another name
...also with no data...any reason why do you need that!?
copying...
January 14, 2010 at 1:50 pm
xxdbxx (1/14/2010)
Correct. The thread-starter did not mention versions and since they seemed to know what copy - only backups were I assumed they were on SQL 2008.db
I understand...
January 14, 2010 at 11:33 am
Krasavita (1/14/2010)
Copy table with index and statistics,is anyone knows how I can copy table with indexes and statistics with another name
Maybe it can be done with other alternatives, but the...
January 14, 2010 at 10:54 am
Copy Only Backup with SSMS are supported just in SQL Server 2008!
January 14, 2010 at 10:45 am
xxdbxx (1/14/2010)
And I really have no idea...
January 14, 2010 at 10:40 am
I think that with SSMS you cannot do it as schedule!
You should create PowerShell script that will stop the SQL Server services, copy files from folder to other folder, then...
January 14, 2010 at 9:57 am
S Hodkinson (1/12/2010)
Installation is complete. The workstation element is now on and all working correctly.Thanks
So the problem solved with re-installation or anything else!?
January 12, 2010 at 8:33 am
A composite column is a violation of 1st normal form
As DBA I agree, as developer I cannot understand the developers, why they allow these things during the large Database design!?!...
January 12, 2010 at 8:10 am
homebrew01 (1/12/2010)
January 12, 2010 at 8:00 am
Example:
You have table TEST and one of the columns that you want to change is LASTNAME NVARCHAR(50) and you want to change it to NVARCHAR(100), you will do like this
ALTER...
January 12, 2010 at 7:56 am
GilaMonster (1/12/2010)
Dugi (1/12/2010)
January 12, 2010 at 7:41 am
You can do it with T-SQL like:
ALTER TABLE YourTable
ALTER COLUMN YourColumn Datatype(new size)
January 12, 2010 at 7:33 am
Viewing 15 posts - 166 through 180 (of 789 total)