Viewing 15 posts - 601 through 615 (of 2,904 total)
Cory,
Your posting is from 6/6/2006...did you ever resolve the issue?
-SQLBill
February 7, 2007 at 12:39 pm
Andy,
There could be lots of things wrong. You just don't give us enough information on what you are trying to do.
1. are you on the same network as the...
February 6, 2007 at 3:05 pm
That's why it is SO helpful to have the code posted and why we ask for it so often.
-SQLBill
February 6, 2007 at 2:56 pm
Try:
SELECT CONVERT(VARCHAR(10),GETDATE(),101) + ' ' + SUBSTRING((CONVERT(VARCHAR(19),GETDATE(),100)), 13, 7)
I use GETDATE() for testing purposes. Just replace it with your parameter.
-SQLBill
February 6, 2007 at 8:17 am
What data type is TransactionDate? If it is DATETIME, then it has a time part.
Let's say TransactionDate is 2/6/2007 05:00:00. That is NOT equal (=) to 2/6/2007. Why...
February 5, 2007 at 10:10 am
How many characters are you talking about per row?
UPDATE: Forgot to ask....are you SURE the data is really in the field? Run this against the column you are having...
February 2, 2007 at 4:18 pm
Wow...doesn't that sound like a homework question!!!!!!!!!
-SQLBill
February 1, 2007 at 12:23 pm
It may NOT be a permission error. Is the new server still in the same domain as the original server? Is the server using the same name as it originally...
February 1, 2007 at 12:17 pm
And then once you choose Client Tools, you will get a window where you can choose what client tools you want to install (Books OnLine, QA, Enterprise Manager, debugger, etc.)
-SQLBill
February 1, 2007 at 12:12 pm
Though you solved it...here's the answers to your questions:
Have you checked the Windows Event Viewer Logs for related error messages?How do I access the event viewer in enterprise manager? Or...
January 31, 2007 at 10:13 am
1. You don't have much CPU usage. You only have 2 to 5%, that's not bad.
2. If you want to find out what processes are running, go to this site:
...
January 30, 2007 at 4:35 pm
Unless someone changed the job name, the job name itself matches the DTS Package name.
-SQLBill
January 30, 2007 at 4:30 pm
Have you checked the Windows Event Viewer Logs for related error messages?
Can you run these and see what happens:
select top 1 id from DVD_I_Have where Userid=78 and DVDID=8 and onhold=0;
SELECT...
January 30, 2007 at 4:22 pm
Run this query:
SELECT ServerProperty('Edition'),
ServerProperty('ProductVersion'),
ServerProperty('ProductLevel')
Then let us know what the results are. It will tell you...
January 30, 2007 at 4:20 pm
Nope. Because an Identity column is in numeric order.
1
2
4
5
6
10
etc.
So, numbering the rows yourself:
1
5
2
10
6
etc
can't be converted to IDENTITY.
-SQLBill
January 30, 2007 at 4:17 pm
Viewing 15 posts - 601 through 615 (of 2,904 total)