Viewing 15 posts - 76 through 90 (of 1,047 total)
Code page problem. Did one of the servers have a patch applied?
July 22, 2013 at 8:50 am
We use an automated process to continually restore 10 minute logs to a DR site for many databases. The process is really a stored procedure that runs from a control...
July 18, 2013 at 1:13 pm
With 35K rows (1000 pages!) I would definitely have an index on it. How important the index will be depends on how big the table is, what kind of data...
July 11, 2013 at 2:11 pm
collect whatever you can, hopefully you can set up a filter to trace only activity from this login and against the database involved in the queries.
July 11, 2013 at 9:26 am
So the next step is to look at windows System/Application/Security logs to see if any entries correspond with these process executions. Also set up a trace and try and capture...
July 11, 2013 at 9:13 am
Try it and see how it works. I've done similar things myself but you will never know how or if it will work until you try.
July 11, 2013 at 9:03 am
Sounds like it might be one of your SQL Agent jobs. Is your SQL Agent service running as a real local or domain user account or just local NT authority...
July 11, 2013 at 8:52 am
Setting a var-whatever (which is what an XML column is) column to NULL does not suddenly shrink the row down by the amount of bytes the column was consuming. It...
July 9, 2013 at 6:57 am
GBeezy (7/8/2013)
July 8, 2013 at 11:02 am
Gathering data across different databases and/or servers does not require that everything take place in one single transaction... unless I am missing something. That is why I was interested in...
July 8, 2013 at 10:58 am
It appears that all of this dynamic SQL is running in one giant distributed transaction across however many SQL servers are in your sys.servers table. For one thing, I...
July 8, 2013 at 8:56 am
You could try this:
select * from YourTable where isnumeric(YourColumn) = 0
this will at least show rows that are not in proper numeric format. ISNUMERIC can sometimes be fooled but its...
July 3, 2013 at 2:28 pm
You can use a DataAdapter and call the update method, OR write a small loop to loop through the rows in the table and do an insert on each...
July 2, 2013 at 6:26 am
jhom (7/1/2013)
The database person probably looks at cursors with a horrified expression.🙂
You would be amazed at some the things we see from programmers when left to their own devices.;-)
They...
July 1, 2013 at 7:45 am
bulk insert into a staging table, then do a single insert from the stage table into destination table like this:
open symmetric key ... decryption by certificate ...
insert into secret(id,ssn)
select id,...
July 1, 2013 at 7:20 am
Viewing 15 posts - 76 through 90 (of 1,047 total)