Viewing 15 posts - 8,416 through 8,430 (of 9,643 total)
If you are inserting into an existing table you want this:
Insert INTO NewDatabase.Customers.tbl_Table
SELECT AcctID
, Name
, Payer
, Payer_Name
, Account
FROM tbl_Customers
WHERE Account IN (113, 372, 135, 021)
If you are creating the table...
July 14, 2008 at 1:32 pm
You enable database mail using the SQL Server Surface Area Configuration tool for Features. Then in SSMS you configure Database Mail Under the Management section of the server you...
July 14, 2008 at 1:30 pm
There is no way to eliminate logging. SQL Server writes changes to the Log and then to the database from the log. Changing the recovery mode to simple will...
July 14, 2008 at 1:26 pm
You could do it a couple of ways. You could concatenate all the columns in the table and then use LIKE. You could use "OR". If you...
July 11, 2008 at 9:45 am
David Griffiths (7/11/2008)
Admittedly I am using SQL Server 2000 so perhaps this is something that has since been resolved. But I work on a...
July 11, 2008 at 9:42 am
Okay, so what is the SQL that is being run in the VB app when it times out?? How long does it take to run in SSMS/QA? What...
July 11, 2008 at 9:40 am
You can also set up a server side trace that you can then look at to determine what is going on. My guess is you are sleeping when the...
July 11, 2008 at 9:31 am
What else is happening on the server when the job is running? Are there other jobs running that access the same resources? Are there backups running?
Without...
July 11, 2008 at 9:28 am
bdba (7/11/2008)
July 11, 2008 at 9:25 am
What is the app written in which is returning the error? Have you looked into the code that they are running when this happens? Sounds like there is...
July 11, 2008 at 9:11 am
I tried creating an excel file with some random dates and could not duplicate what you are seeing. Can you attach a subset of data in Excel?
Are you using...
July 10, 2008 at 10:02 am
It looks like you actually named the parameter in the stored procedure @tour instead of @TourID. Either change the stored procedure to use @TourID or change the .NET code...
July 10, 2008 at 7:29 am
Could you post some sample data?
July 10, 2008 at 7:20 am
Congratulations Gail. I was pleased to see you recognized as well. I always take the time to read any forum threads where I see your name.
July 9, 2008 at 1:51 pm
Congratulations. You both certainly have been contributors to the SQL Server Community.
July 9, 2008 at 1:43 pm
Viewing 15 posts - 8,416 through 8,430 (of 9,643 total)