Viewing 15 posts - 1,351 through 1,365 (of 13,469 total)
here's the article i have bookmarked from Paul Randal, as mentioned above.
December 1, 2015 at 12:15 pm
you can manipulate the results in powershell
[System.Data.Sql.SqlDataSourceEnumerator]::Instance.GetDataSources() | SELECT ServerName | Format-Table -HideTableHeaders
December 1, 2015 at 11:47 am
man that's a classic pain point i've tripped over myself.
i'm very sure it has to do with permissions related to folders (virtual fodlers?) within SSRS.
go to the SSRS web site,...
December 1, 2015 at 8:47 am
ok, this worked pretty well for me;
you can expand this to use char/nchar if needed, but i left it as varchar/nvarchar, as that's all i'd ever use anyway.
no need to...
December 1, 2015 at 6:41 am
you are missing the FROM clause. you can't select a column name without it's table.
SpeedSkaterFan (11/30/2015)
I am trying to split (incorrect) cellcontents into smaller pieces.
If I use:
SELECT cdsDescription
...
November 30, 2015 at 12:10 pm
you'll need to add the NULLIF function, i think:
,ROUND(( CAST(AeSubCount AS FLOAT) / CAST(NULLIF(SubCnt,0) AS FLOAT) ), 2) AS Rate
November 30, 2015 at 9:59 am
your error is your print statement, you cannot print a column's value.
PRINT 'Record already exists in mbrship table' + mbrs_id
you have to print something static or a variable like @mbrs_id...
November 30, 2015 at 9:38 am
gurvinderg (11/30/2015)
November 30, 2015 at 6:33 am
Chirag# (11/30/2015)
thanks a for your answer , from your query i can get the id but mail was not received in my inbox
also it is not...
November 30, 2015 at 6:02 am
Additionally I would also look at the scheduled jobs on the server itself; there's a good chance that Extract-Transform-Load(ETL) jobs that populate your databases exists on the same server...
November 25, 2015 at 11:45 am
SSRS would not need any changes; it's not printer aware
Duplex printing is an end user/client setting,the specific target printer, and whether it supports double sided printing. whether to print...
November 25, 2015 at 9:16 am
sp_send_dbmail returns an int output parameter, which you can capture, but you have to do so explicitly.
[highlight="#ffff11"]declare @TheMailID int[/highlight]
...
November 25, 2015 at 7:03 am
In my experience, the network low on my list of things to review for slow running queries.
returning trivial information, like SELECT @@VERSION should come back instantly. that would quickly show...
November 23, 2015 at 12:14 pm
Perry Whittle has posted a nice script multiple times, for example in this link:
http://www.sqlservercentral.com/Forums/Topic1560182-1550-1.aspx
i've grabbed his version and made it my own with minor tweaks, it's very comprehensive.
November 23, 2015 at 12:00 pm
Bryan.avergonzado (11/23/2015)
Error: 5123, Severity: 16, State: 1.
2015-11-23...
November 23, 2015 at 7:11 am
Viewing 15 posts - 1,351 through 1,365 (of 13,469 total)