Viewing 15 posts - 2,416 through 2,430 (of 2,904 total)
It's not an error in the database. The data is correct but it's being CONVERTed incorrectly (from DATETIME to DATETIME(8)).
The stored procedure may not have been parsed. I've written and...
October 15, 2003 at 10:52 am
Check out the Books OnLine. Specifically, use the Index search tab and enter:
Joins-SQL Server. Then double click on the sub-topic Transact-SQL.
That explains that using =* or *= can cause ambiguity.
-SQLBill
...
October 15, 2003 at 10:48 am
What I like about your Real Life stories is that you give the steps you followed. I've printed several of them for my own trouble-shooting reference.
-SQLBill
October 15, 2003 at 10:43 am
You only have ONE .bak file, correct?
If so, that's really just the database. You can't restore PART of a .bak file.
-SQLBill
October 9, 2003 at 7:33 am
BTW-your UNIX software may be doing more 'behind the scenes' than you are aware of.
For example....Let's say you have a date and time in UNIX....October 26th 2:00 AM.
What will that...
October 8, 2003 at 12:12 pm
In SQL Server datetime datatype is a two 4-byte integer. The first 4 bytes store the number of days after 1 January 1900 and the second 4 bytes stores the...
October 8, 2003 at 12:02 pm
Oooo, Jonathan beat me to the answer. Must have been just by a second or two. (BTW-his suggestion is better than mine).
-SQLBill
October 8, 2003 at 11:58 am
Something like this might work:
ALTER TABLE tablename
ADD datefield DATETIME CHECK
(datefield > GETDATE() AND datefield < GETDATE()+730)
-SQLBill
October 8, 2003 at 11:54 am
SINGLE USER mode stops anyone else from connecting. Depending on the WITH option, you can wait until transactions are done, or you can kick everyone out and rollback any transactions....
October 8, 2003 at 10:47 am
How critical is your data?
Have you talked to the users of the data?
I'm REQUIRED BY LAW to keep my data for two years. I backup daily and when the data...
October 8, 2003 at 10:44 am
Okay, I missed your comment about the port issue.
Next, what type of authentication is DEV_AP1 set up to use? (IN Enterprise Manager, right click on the server/instance and check the...
October 8, 2003 at 10:31 am
First thing to check, which port is DEV_AP1 listening on? (The first instance is usually 1433, the second instance is usually something else).
Second, is your ODBC connection to DEV_AP1...
October 8, 2003 at 10:26 am
The answer WASN'T "always be "Hardware".
The question WAS: What's the FIRST thing you should check when troubleshooting the problem? (that's not the EXACT wording, but close enough). The answer was...
October 8, 2003 at 7:09 am
BTW-SA account ONLY works with SQL Authentication.
-SQLBill
October 8, 2003 at 7:02 am
When I had to restore to my SAN, all I needed to do was put the database in SINGLE_USER mode and then do the RESTORE. I didn't have to stop...
October 8, 2003 at 7:01 am
Viewing 15 posts - 2,416 through 2,430 (of 2,904 total)