Viewing 15 posts - 16 through 30 (of 120 total)
If you're using a DATETIME, you can use the DATEPART function to get the hour and group on the value for the hour based on a 24 hour clock.
DATEPART(hh, GETDATE())
You...
September 10, 2012 at 12:21 pm
How are you determining which record is the "correct" record to return for the duplicates? For instance, how do you know you want the LA Shawn and not the...
September 10, 2012 at 12:15 pm
It is known that SQL Server will try to resolve anything with an "sp_" prefix as a system stored procedure first and if it cannot be resolved it will try...
September 10, 2012 at 12:08 pm
The issue is, you are specifying the GO batch separator so if you encounter an error in one batch, the subsequent batches will still execute.
If you encounter an error you...
September 10, 2012 at 11:55 am
How are you storing the images? Is the binary data being stored inside a table or are you storing references to the images?
September 10, 2012 at 11:50 am
I noticed this was happening on one of my SQL instances.
In order to fix the problem I followed these steps:
1) right click Data Collection and select Disable Data Collection (this...
August 29, 2012 at 1:10 pm
Firewall is disabled so I don't think that is a factor.
Thank you for your assistance.
John
August 14, 2012 at 10:04 am
Yeah same, but I noticed if I fully qualify the instance name it will go green.
So fully qualified shows green and if I just put the hostname it shows red...
August 14, 2012 at 8:41 am
Yeah I thought it might be something along those lines so I shut down SSMS and re-opened it. I was able to watch it poll each registered server and...
August 14, 2012 at 7:36 am
BCP will pull data from a file. This method is to pull data from an existing table to another table.
Could also use SQLBulkCopy .net library (or SSIS).
August 7, 2012 at 10:08 pm
I am doing something similar. We need to get data from one server to the other with minimal impact to the developers deployment process and minimal bandwidth. What...
August 7, 2012 at 10:06 am
Yes, "not for replication" was included in the generated script. I commented it out and now it is not happening.
June 13, 2012 at 3:30 pm
I understand. I will see if I can get a mocked up version of the code that accurately represents what's actually going on.
thank you
June 1, 2012 at 10:41 am
I don't think I'm allowed to post the code.
I really just want to know if this locking scenario is something that should be unexpected. Based on everything I've read...
June 1, 2012 at 7:58 am
Viewing 15 posts - 16 through 30 (of 120 total)