Viewing 15 posts - 91 through 105 (of 541 total)
Got me good.
and i thought there were no DMV's in 2012 for column index info.
August 27, 2015 at 8:39 am
Try reading these sqlservercentral links:
http://www.sqlservercentral.com/articles/Basics/xmlsimplified/1898/%5B/url%5D
http://www.sqlservercentral.com/articles/Basics/3117/%5B/url%5D
August 18, 2015 at 10:06 am
Do you have MultipleActiveResultSets=true?
It means you can execute multiple commands under the same connection.
I can't recall exact syntax but you have to use reader.close() or something similar.
June 29, 2015 at 1:07 pm
lenrigby (6/16/2015)
I regularly have to run an SSIS package in SQL Server Agent 14 times, one for every year from 2002-2015 inclusive. This means I have periods of wasted time...
June 26, 2015 at 1:32 pm
Brandie Tarvin (6/24/2015)
Question. Is MsRPC a SQL Server only thing?I'm finding it in the registry under CurrentControlSet\Services. Not sure if I should remove it or leave it be.
Leave it.
June 24, 2015 at 11:29 am
Check if you have "Verify Backup Integrity" enabled on your tlog backups.
June 22, 2015 at 2:49 pm
1) Backup (Export) the registry.
2)Delete the following keys in regedit:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server (there should be multiple entries like Native Client, Redist)
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer
3)Go To and delete all the sub-keys referencing SQL Server...
June 22, 2015 at 8:38 am
Make sure SQL Agent account has Modify permissions.
June 12, 2015 at 1:12 pm
Refer to this fix https://support.microsoft.com/en-us/kb/2803065:
June 9, 2015 at 1:34 pm
There are other ways like Powershell or SQLCMD to accomplish this but this is the linked server way.
You have to create Linked Servers and add both servers participating in AO...
June 1, 2015 at 9:19 am
you can use:
exec xp_servicecontrol 'stop','SQLServerAgent'
GO
exec xp_servicecontrol 'start','SQLServerAgent'
GO
May 29, 2015 at 2:28 pm
you don't need (select @@server) just use (@@server)
May 27, 2015 at 10:00 am
Here is the post describing multiple data files.
http://www.sqlservercentral.com/Forums/Topic1071180-146-1.aspx
May 27, 2015 at 7:16 am
You can use SqlCmd utility from command line:
sqlcmd -S yourservername -i sqlscript.sql
May 26, 2015 at 1:49 pm
Resender (5/19/2015)
create table dbo.ADAssets
(Computername nvarchar(max))
insert into dbo.ADAssets
values
('AIRLBEOF3565 CNF:4e926e06-6f62-4864-aebd-6311543d',
'AIRLBEOF3565')
So if execute the following
select Computername
from dbo.ADAssets
where Computername like
'AIRLBEOF3565%'
I get both records,but if I do this
select *...
May 19, 2015 at 9:06 am
Viewing 15 posts - 91 through 105 (of 541 total)