Viewing 15 posts - 11,251 through 11,265 (of 13,469 total)
All I did was confirm your code is essentially the same on my SQL2005/1Gig ram 2.8 machine.
My first guess was because you were using a @table variable for your Tally...
April 12, 2009 at 5:40 pm
Extract, transform, load - Wikipedia, the free encyclopedia
basically getting data from one source and bringing it into anohter , realtime would be as it happens or changes.
April 10, 2009 at 10:57 am
i think you are after this command, which allows you to see structure of tables(but not hte data), as well as the text of procs and views, right?
GRANT VIEW DEFINITION...
April 10, 2009 at 10:42 am
you'll want to simply Add these commands to the top:
SET STATISTICS IO ON
SET STATISTICS TIME ON
--SET SHOWPLAN_TEXT ON
then run your two queries together....actually run them a couple of times...
April 10, 2009 at 10:37 am
Kailash Mishra (4/10/2009)
Hi,It's good query, but it not works in SQL 2000
Is there any query, which will give the same outpur and can use in SQL 2000
the query i posted...
April 10, 2009 at 7:49 am
ok i'm guessing your query got changed to make it less complex for the web...
but there seems to be a some steps tha seem weird to me.
if you yank out...
April 10, 2009 at 4:21 am
there was a similar thread on the issue, and even though the person had updated usage, updated statistics, the issue did not clear until they DROPPED their current statistics, then...
April 9, 2009 at 7:17 pm
there was just someone else a day or two ago that got gmail to work; it trick was a weird port for secure connection,
here's the link:
http://www.sqlservercentral.com/Forums/Topic545821-146-1.aspx
April 9, 2009 at 7:14 pm
nothing exists automatically for this; you'll have to start a serverside trace, let it run for a while, and use the trace results to do your statistics;
you can get a...
April 9, 2009 at 4:34 pm
GSquared pointed me in the right direction.
trustworthy was required, and i tweaked my version of the script until it works.
I created two new sql login users, "bob" and "jeff" with...
April 9, 2009 at 2:26 pm
i think th etrick is to simply use integer division to get the mod = 0
here's how to do it with a tally table:
select N from master.dbo.Tally
where n = 1...
April 9, 2009 at 12:18 pm
here's my version, where i figured i'd find and replace from an existing set of commands i know works fine:
i greated a login named 'bob' with connect priviledges. this created...
April 9, 2009 at 12:03 pm
don't you have to add a USE DATABASENAME command before you add the user, otherwise it would just re-add the user to the existing connected database?
April 9, 2009 at 11:17 am
there you go then, no worries.
about the only thing i could suggest is a lot of people here recommend creating a list of commands in a varchar(max) string and then...
April 9, 2009 at 10:57 am
since HTML is text, i would have used a varchar(max) column instead of varbinary(max)
you can convert to NVarchar(max) to see the contents.
select CAST(YourVarbinaryColumn as nvarchar(MAX)) From YourTable
April 9, 2009 at 10:38 am
Viewing 15 posts - 11,251 through 11,265 (of 13,469 total)