Viewing 15 posts - 1 through 15 (of 147 total)
What happens? Are there any errors? We need more information to further troubleshoot this issue. What's your code? Have you run a SQL Trace (or XE)...
October 8, 2012 at 9:06 pm
Go into SSCM and double check to make sure the SQL Server service is set with automatic startup. It sounds a little like the service is just set for manual...
July 16, 2012 at 7:05 pm
Colleen M. Morrow (7/16/2012)
My "Custom Reports" folder was under "My Documents\SQL Server Management Studio". Looks like it's just a matter of creating directories there.
Hey, Colleen!!! So I tried that...
July 16, 2012 at 6:59 pm
There are a lot of things wrong with your last post. First, variable names are declared with an 'at' sign (@). Executing this code:
DECLARE example varchar(8)
...results in the...
July 8, 2012 at 11:23 pm
Your best bet here would be to script out the database (schema and data, if you so choose) on your source 2008 R2 instance, and run the script against your...
July 8, 2012 at 3:16 pm
Clustered indexes are the actual table data (hence why you can only have one clustered index per table). A nonclustered index will have key column and non key column data...
July 4, 2012 at 2:00 pm
How much space is free in your data file? Use the below query (version-controlled copy here) to find out this information:
use YourDatabase;
go
;with DatabaseFileInfo as
(
select
db_name(database_id) as database_name,
name as db_file_name,
size...
July 4, 2012 at 9:33 am
gantavasu (7/4/2012)
I am agree with youas per you it will take less time and space.In this case how can i take this backup
backup database YourDatabaseName
to disk = 'C:\YourBackupDir\YourDiffBackup.bak'
with differential;
go
July 4, 2012 at 9:30 am
SQL Server does not support incremental backups. A differential backup would be capturing data that has changed since the last full backup. No matter how many diff backups...
July 4, 2012 at 9:23 am
If you want to modify this, you can run the below T-SQL. The first changes the max rows to 2000, max rows per job to 200 (as opposed to...
July 4, 2012 at 8:25 am
What's the instance name?
July 2, 2012 at 9:10 pm
Is the SQL Server service actually started? Check this through SQL Server Configuration Manager. The error you are receiving is not a credentials issue, but a connection problem....
July 2, 2012 at 7:12 pm
Jeff Moden (7/2/2012)
Thomas Stringer (7/2/2012)
Jeff Moden (7/2/2012)
July 2, 2012 at 8:12 am
Jeff Moden (7/2/2012)
July 2, 2012 at 6:41 am
Viewing 15 posts - 1 through 15 (of 147 total)