Viewing 15 posts - 106 through 120 (of 230 total)
SYS.PROCESSES or SYSPROCESSES?
May 9, 2013 at 9:57 am
He can use roll up to get the bottom total too like below but I am not able to sort it right as he want based on Grandtotal.
SELECT [SlNo#] =...
May 9, 2013 at 9:37 am
You can not get your space back on that way.
The only way I know is that you have to restart SQL server services. But You really have to read...
May 9, 2013 at 8:01 am
Try to figure it out why you even can't ping that IP from command prompt.
If you can not ping it, SQL cannot validate it.
May 9, 2013 at 7:55 am
What does "want to keep 30 iterations of it" means?
You want to run it daily 30 times? Loop through it. Or save results of 30 iterations of job?
May 8, 2013 at 1:11 pm
Have you tried restarting SQL with two trace flags as below.
SQLServr.exe –T3608 –T3609
Also here is an artcle from Gail Shaw which explains this in a really good way.
https://www.simple-talk.com/sql/backup-and-recovery/the-sql-server-instance-that-will-not-start/
May 8, 2013 at 1:05 pm
If queries are running fine in Query analyzer but not in application, I suspect two things.
1) Parameter sniffing
2) Network latency
Try to work on these 2 things and see what you...
May 8, 2013 at 7:00 am
I think you should use Table Valued Parameter. The below link has examples in it too.
http://blog.sqlauthority.com/2008/08/31/sql-server-table-valued-parameters-in-sql-server-2008/
May 8, 2013 at 6:57 am
Have you even tried it? If yes, what values you have passed? Waittime is value passes in millisecond so you have to convert hours in ms.
May 7, 2013 at 5:00 pm
The only way I know you can set up a replication by creating a snapshot or initialize with backup. In both cases you have to have the same schema...
May 7, 2013 at 3:30 pm
Does the account/ SQL Server agent Service account has delete file permission on the server where job is set up?
Try logging in the folder with the account which is running...
May 7, 2013 at 3:22 pm
Let me ask you one question. What I can see from your result that, once you get 'Trl' from Substring([Column 0], 4, 3), every thing else below that will be...
May 7, 2013 at 2:02 pm
You can try deny CONTROL permission on the database or VIEW DEFINITION permission to role.
not sure, whether will work with db_owner or not.
May 7, 2013 at 1:53 pm
Lowell, he has mentioned in first post that The primary key combination for the destination table is "ROBumber + ROTime" .
May 7, 2013 at 1:23 pm
I was able to replicate exact same issue in my environment if the CTE name & name of table is same, so I do not see any reason that it...
May 7, 2013 at 1:07 pm
Viewing 15 posts - 106 through 120 (of 230 total)