Viewing 15 posts - 1,486 through 1,500 (of 7,168 total)
debanjan.ray (3/22/2013)
Thanks All !!!It works.... 🙂
What works? Common courtesy is to post the solution that worked for you so others that encounter the same issue and find this thread...
March 22, 2013 at 8:24 am
Abu Dina (3/22/2013)
Hmmm.. Galimonster's last comment kind of makes sense but I'm still not entirely sure I understand what's going on.
Basically what it means is that since the query in...
March 22, 2013 at 8:21 am
skb 44459 (3/22/2013)
SQL 2005. Our Database Server is 2005 . Is there a way to use -d option with 2005 server ?
Unfortunately, no.
Can you help us understand the setup a...
March 22, 2013 at 8:16 am
Sounds like you might be calling the SQL 2005 version of bcp. What version of SQL is your database on?
March 22, 2013 at 7:18 am
What is the log_reuse_wait_desc in sys.databases?
March 21, 2013 at 10:34 pm
I may be making it too simple and missing some nuance of what you are after, but I think you just want a LEFT JOIN.
SELECT t1.Field1,
...
March 21, 2013 at 9:11 pm
Will this run every 4 seconds from the time the stored procedure is called in the program?
The stored procedure will execute indefinitely, but every 4 seconds it will deliver a...
March 21, 2013 at 4:11 pm
I would recommend against running a job every 4 seconds. Instead it would be better for you to make a stored procedure and use the WAITFOR DELAY command inside a...
March 21, 2013 at 3:09 pm
I have used the SSL feature in Database Mail with success. Have you tried it out?
March 21, 2013 at 2:56 pm
With limited insight into the overall process this may sound like I am asking a silly question so forgive me please, but why not push all the necessary data changes...
March 21, 2013 at 2:00 pm
Another option:
IF OBJECT_ID(N'Dev1_PHIL_App.dbo.extgen_ki_TestLoop1') IS NOT NULL
March 21, 2013 at 1:50 pm
From a T-SQL perspective WAITFOR DELAY will not actively use any server resources other than the overhead of having it keep an open thread using a little memory for the...
March 21, 2013 at 1:38 pm
In this case SSIS is a good choice regardless of the complexity of the tranformation because the source and destination databases are going to be on different instances.
If you want...
March 21, 2013 at 1:23 pm
It looks like you are fully-qulaifying the call to the proc, but not the existence check. In your sample code try replacing this:
IF OBJECT_ID(N'dbo.extgen_ki_TestLoop1') IS NOT NULL
with this:
if exists (select...
March 21, 2013 at 1:07 pm
Viewing 15 posts - 1,486 through 1,500 (of 7,168 total)