Viewing 15 posts - 1,561 through 1,575 (of 7,187 total)
Like I said before, values in a date column are stored as a number, not with any particular format. The format you see when you select from the table in...
May 4, 2017 at 7:18 am
Then you must have some "dates" that can't be converted - something like "13/13/11", maybe? Try using TRY_CONVERT to find out which are the offending values.
John
May 4, 2017 at 7:07 am
The value of a persisted column is calculated at select time, not at insert or update time - consider the code below and you'll see that. That's why the persisted...
May 4, 2017 at 2:34 am
Try running a trace to capture queries that run for more than, say, five seconds. That'll give you an idea of what's going on when the server is supposed to...
May 3, 2017 at 2:07 am
Are the log backup jobs actually clearing out the transaction logs when they run? If not, use this query to find out why:SELECT log_reuse_wait_desc
FROM sys.databases
WHERE...
May 2, 2017 at 9:56 am
May 2, 2017 at 9:34 am
May 2, 2017 at 7:22 am
When you run the package manually, it runs in the context of whatever user you're logged in as. When you run it from a job, it runs in the context...
May 2, 2017 at 4:29 am
What is the data type of the Dates column in your new table? If it's datetime (or similar), then dates are stored as dates, not strings. That's how it should...
May 2, 2017 at 4:02 am
Thom is absolutely right. Having your reporting requirement dictate your database structure is like the tail wagging the dog. Keep your database in proper normal form, and handle the pretty...
May 2, 2017 at 2:51 am
NotANewbie - Friday, April 28, 2017 9:40 AMNo, I want those questions answered before I accept an offer.
Yes, of course. I...
May 2, 2017 at 2:20 am
I think I'd leave most of those questions until after an offer is made - maybe ask to speak to a techie (not necessarily one of your interviewers) if you're...
April 28, 2017 at 7:03 am
Or if you have administrator (or sufficient) permission on the server, you can open the actual text files that the logs are stored in (errorlog, errorlog.1 etc).
John
April 28, 2017 at 3:15 am
Viewing 15 posts - 1,561 through 1,575 (of 7,187 total)