Viewing 15 posts - 11,101 through 11,115 (of 13,469 total)
more details from you before anyone can help; it's all specific to YOUR network.
what is the address of yout SSRS server? are you connecting to a .com address or a...
May 15, 2009 at 10:06 am
you can also establish a regualr ADODB connection and connect to the server, without having any SQL client tools installed. there are a lot sample apss that can do that...
May 15, 2009 at 7:25 am
you'll need to handle errors a s a separate email, something like this:
DECLARE @Results int
EXEC @Results = msdb.dbo.sp_send_dbmail
@profile_name = 'AdventureWorks Administrator',
@recipients = 'danw@Adventure-Works.com',
@body='Whatever the...
May 15, 2009 at 5:53 am
this was about the only thing that made sense to me;
SELECT
ID,
[month],
[year],
CASE
WHEN month(getdate()) IN...
May 14, 2009 at 8:36 pm
this is actually a question for Network Solutions...if they expose their SQL Server to allow you to connect directly, then yes.
If it is hidden behind a firewall, then no.
I have...
May 14, 2009 at 7:44 pm
the secret is to join the table against a copy of itself.
this example is most of the way there...the only problem is that it returns more than one row.
that can...
May 14, 2009 at 5:26 pm
mcginn (5/14/2009)
May 14, 2009 at 1:13 pm
it's still just a hyperlink...your computer resolves the path for you.
Some Excelfile on a web server with DNS
May 14, 2009 at 10:13 am
it's best to use the GUI in designer. you cannot actually insert between column...behind the scenes you have to create a new table with the newly designed "correct" structure complete...
May 14, 2009 at 7:45 am
Create table #TempA ( Name Varchar(20), Age Int,Hobby Varchar(20),HobbyCode Int)
maybe I'm reading the requirements wrong, but if you want the current distinct combinations that exist in the table, would it...
May 14, 2009 at 7:36 am
I thought it's probably 30 million records, and not 30 million users, which I thought was on par witha Google sized-installation....but
just for fun, i searched for Google Searches per day...found...
May 14, 2009 at 7:24 am
you'll need to make it a UNC path, like \\ServerName\SharedFolder\Filename.txt or whatever.
you cannot put it on a C:\ drive, it has to be a share since you want other people...
May 13, 2009 at 10:30 pm
i have this saved, because it is a great resource for determing the minimal impact that a trace incurs:
May 13, 2009 at 1:43 pm
i created a view to see the data in my DML trace..only thing obvious i saw was to simply do a SELECT * from myDMLView where TextData like '%#%'...
May 11, 2009 at 10:08 pm
Viewing 15 posts - 11,101 through 11,115 (of 13,469 total)