Viewing 15 posts - 12,586 through 12,600 (of 13,469 total)
it looks to me like you are using a loop to insert one group of data at a time, when you could do it all as a single set based...
April 24, 2007 at 8:05 am
are you sure you want to do in in SQL Server? why not a programming language, like .NET,VB6 or something? you stated you just want to copy it to disk,...
April 23, 2007 at 10:29 pm
pointing out the obvious, but you should not be trying to display all 4.8 million rows in EM while connected to a production database....
you are right, EM and SQL server...
April 23, 2007 at 10:04 pm
i can only suggest some general/generic things to look at; nothing obvious or strange in your query, so I'd look at things like service pack on the machines that fail...
April 19, 2007 at 10:46 am
what Guru is saying is you will receive an error if you try and use EXEC to populate a @table variable;you must use a #temp or ##temp table
here's a proc...
April 19, 2007 at 9:52 am
we recently did the same thing in our shop...we had separate databases for each application. whenever one of our clients had more than one application, the issue of duplicate data...
April 19, 2007 at 8:23 am
don't know if this will help, but this thread talks about differences in file/folder permissions screwing up an install on a normal machine:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=357952#bm358701
HTH
April 19, 2007 at 6:22 am
you cannot do that natively. the change/insert information related to data is not captured.
usually, if this is required, you'd add two columns to the table, as well as a trigger....search...
April 13, 2007 at 8:49 am
this will be data related....
on db1, the recordset frm.AdodcTemp.Recordset was loaded with a select statement...
but on db2, the same select statment returned no data, so the recordset is at the...
April 12, 2007 at 4:58 am
you've got almost all the pieces...i've done the same thing as well:
To check Syntax:
SET PARSEONLY ON
-- Execute your query
GO
SET PARSEONLY OFF
To Actual Compile and check for objects existance:
SET NOEXEC ON
GO
--...
April 12, 2007 at 4:48 am
isn't it @@proc_id? so object_name(@@proc_id), rather than the @@spid?
April 10, 2007 at 7:40 pm
i have this handy query stored in my snippets collection.
select name as DBNAME,STATUS,
CASE WHEN (STATUS & 1) = 0 THEN 'FALSE' ELSE 'TRUE' END AS [AUTOCLOSE_(ALTER_DATABASE)],
CASE WHEN (STATUS...
April 4, 2007 at 6:45 am
i don't think that error refers to free storage card/disk memory, but rather the amount of RAM that is available to perform the query;
my CE machine has 128M of ram,...
April 4, 2007 at 5:32 am
i think this can be fixed simply by adding some code to either the button that submits the data, or the Sub Page_Load event; the page will have all the values that...
March 30, 2007 at 9:39 am
No problem Steve; just wanted you to know; i bet it has something to do with the high traffic your site gets; i love this site and spend a lot...
March 29, 2007 at 6:19 pm
Viewing 15 posts - 12,586 through 12,600 (of 13,469 total)