Viewing 15 posts - 4,186 through 4,200 (of 13,469 total)
the better question is why you think you need a report with 600K or more records in it? who is going to use it? no-one can possibly manually review that...
January 3, 2013 at 9:11 am
opc.three (1/3/2013)
January 3, 2013 at 8:28 am
for me, a VPN session just gives me an ip and DNS services on my work LAN so i can see all the servers on the lan.
so if i open...
January 2, 2013 at 4:04 pm
opc.three (1/2/2013)
In my opinion this kind of work should be done way far away from the database engine. There are many applications out...
January 2, 2013 at 1:47 pm
and the same tested query via sqlcmd:
declare @cmd varchar(4000)
--sqlcmd -q "select col1,col2,col3 from table" -oc:\myfile.csv -h-1 -s","'
SELECT @cmd = 'sqlcmd.exe' --the executable...if not in the PATH variable, you might need...
January 2, 2013 at 9:40 am
ahthomas (1/2/2013)
January 2, 2013 at 9:35 am
ahthomas (1/2/2013)
January 2, 2013 at 9:02 am
SQLCrazyCertified (12/31/2012)
I don't exactly follow all the steps you mentioned above.
Can you please provide step by step for example, I want to create a
Linkedserver from SQL to Oracle.
What...
January 1, 2013 at 12:06 pm
mmilodragovich (12/30/2012)
Hi Lowell,This will solve a problem I am having.
Are you able to share your WebReader.zip again?
Thanks in advance.
my original link in the other article is still good, as well...
December 31, 2012 at 5:25 am
arnipetursson (12/28/2012)
December 28, 2012 at 1:20 pm
the key is what criteria to use to find that 1200, or whatever the number actually is;
Create table dbo.UFM_AGENTS (
TS_ID ...
December 28, 2012 at 10:56 am
your trigger needs to refer to a table, just like any other SELECT statement does;
when inside a trigger, you need to use the virtual tables INSERTED or DELETED, depending on...
December 28, 2012 at 9:57 am
i have no problem doing this in either SSMS or Visual Studio; for me it's very common for documentation and help files to be included.
you just right click on the...
December 26, 2012 at 11:55 am
I think the issue is SSMS itself tends to require higher level permissions than you'd think would be required. if you access SMO directly(like from powershell) , ddl_admin or even...
December 21, 2012 at 12:40 pm
reminds me of horrors like this:
CREATE TABLE [SELECT]([SELECT] INT IDENTITY(1,1) NOT NULL PRIMARY KEY )
SELECT [SELECT].[SELECT] FROM [SELECT] WHERE [SELECT] = 1
December 21, 2012 at 10:04 am
Viewing 15 posts - 4,186 through 4,200 (of 13,469 total)