Viewing 15 posts - 1,696 through 1,710 (of 11,678 total)
Abhijit More (10/9/2014)
1) Data sizes? - 30 GB
2) Available high performance storage space? 1TB disk, 97 GB sql memory, 16 processors
3) Type of storage available? - RAID 1
> Already...
October 9, 2014 at 5:00 am
BWFC (10/9/2014)
October 9, 2014 at 4:50 am
frdrckmitchell7 (10/9/2014)
Thanks for your reply. What version of SQL Server did you run this on? It might just be me being silly, but I can't run...
October 9, 2014 at 4:44 am
I think regular expressions might be the "easiest" option.
October 9, 2014 at 4:19 am
Rob CW (10/9/2014)
This is, after all, an article...
October 9, 2014 at 4:16 am
This query returns the same result, but in a set-based manner:
WITH CTE_Tally AS
(
SELECT TOP 13 rid = ROW_NUMBER() OVER (ORDER BY object_id) - 1
FROM sys.columns
)
SELECT FinalDate = IIF(rid = 0,YEAR(CalcDate)*10000...
October 9, 2014 at 4:12 am
GilaMonster (10/9/2014)
TomThomson (10/8/2014)
I wish e718 had been available when I was younger; but I think http://www.thinkgeek.com/product/f3cd/ would have been even better.I think my sysadmin would love that one.
Talking about sysadmins...

October 9, 2014 at 2:49 am
What if you create another variable @args that contains "-pxxx -uxxx --host=myhost.mydomain.com <" + @[User::SanScreen] + " -B >" + @[User::OutPut] + " 2> C:\\Users\\brittg2\\Temp\\out.err" as an expression and just...
October 9, 2014 at 1:21 am
What is the protection level of the package?
October 9, 2014 at 1:17 am
I'm not sure what you did, but I can make a line graph just fine.
See the following screenshot. I also added the .rdl file to the attachments.
I just imported the...
October 9, 2014 at 1:15 am
You could divide the number of minutes by an integer division. For example, you want to have intervals of 5 minutes.
Divide the number of minutes by 5.
0 / 5 =...
October 9, 2014 at 12:57 am
mrkp (10/4/2014)
October 9, 2014 at 12:51 am
Does the user tb already exist in the database?
October 9, 2014 at 12:47 am
Viewing 15 posts - 1,696 through 1,710 (of 11,678 total)