Viewing 15 posts - 2,386 through 2,400 (of 7,191 total)
Yes, although there is a two-byte overhead for the variability, so storing "Test" would cost you 6 bytes. But if, for example, you were storing just state codes "AL",...
August 2, 2016 at 2:39 am
Also, choosing the appropriate data type (and scale) helps prevent absurd data from getting into your database - you know, dates that aren't proper dates, phone numbers with text in...
August 2, 2016 at 2:14 am
Another option, if you do regular random test restores of your databases, is to run DBCC CHECKDB on the restored version. Yes, you'll still need the same amount of...
August 1, 2016 at 9:39 am
August 1, 2016 at 9:28 am
This is how I understand the page I linked to: the CHECKDB operation is broken down into batches (unless you have TF2562 set - do you?) in order to avoid...
August 1, 2016 at 8:46 am
Do you have a small number of large tables in this databases, whereas in your other databases, the data is more evenly distributed between tables? That's one possible explanation....
August 1, 2016 at 8:18 am
August 1, 2016 at 7:54 am
What are the values of LNAME, FNAME and MINTL for those two rows?
John
August 1, 2016 at 7:31 am
I'm not writing the query for you - that's what you're paid to do. If you really don't want to do it yourself, just type "query to return backup...
August 1, 2016 at 5:59 am
1. Write a query that gets the information you need from the target servers
2. Use a Data Flow task to pull the query results into a table on your central...
August 1, 2016 at 5:16 am
What happens if the number of tickets is more than 5?
John
August 1, 2016 at 4:51 am
I'm afraid you need to do the hard work on this one yourself. Start here[/url].
Incidentally, I'd advise you to use an OUTPUT clause in your DELETE and UPDATE statements,...
July 29, 2016 at 4:45 am
Build the verification into your backup job, so it's done as soon as the backup is made.
By the way, VERIFYONLY only checks the file header. You might want to...
July 28, 2016 at 8:48 am
Physically separating data and log files is about more than performance - it's about recoverability, too. If you lose the disk that your data and logs are on, you've...
July 28, 2016 at 2:27 am
That stored procedure isn't going to return a result set, just some output parameters, so I'm a little confused. And given that startdate is an output parameter for the...
July 27, 2016 at 9:38 am
Viewing 15 posts - 2,386 through 2,400 (of 7,191 total)