Viewing 15 posts - 8,281 through 8,295 (of 13,469 total)
for an index to be created, it has to be on an object that exists inside the database; that way constraints can be enforced.
constraints cannot be created accross db boundaries.;...
December 17, 2010 at 10:00 am
you might use soemthing like this to help track it down.
this can give you the spid of who ran the offending statement if it was recently run:
SELECT
...
December 17, 2010 at 9:54 am
sangerex (12/17/2010)
Thank for your reply, but i know that already and my supervisor required me to find a way solving that problem 🙁
yep caught between the proverbial rock and a...
December 17, 2010 at 9:41 am
any field that needs to be searched should not be hashed; otherwise you are right, you can only get an exact match of hashed values; hashes are not sequential so...
December 17, 2010 at 8:46 am
there are some free reports from Microsoft that you can add to your Reporting Services:
December 16, 2010 at 2:20 pm
looks like the insert statement from your ddl audit has a table that doesn't allow nulls for the object name;
i'm thinking that the creation of statistics might not generate a...
December 16, 2010 at 1:37 pm
it is actually deceptively simple...you just repalce a palceholder in the msg body with the variable actuial value ...just make sure the variable values cannot be null, and you...
December 16, 2010 at 1:29 pm
From the GUI, you cannot; switching a table from one schema to another, at least in 2008, requires a script; there's no GUI to help you do it.
The GUI lets...
December 16, 2010 at 1:17 pm
nope there's no way, AFAIK.
your options are to use a trusted connection with their windows login so you don't need the username and password at all,, or to use EXECUTE...
December 16, 2010 at 9:15 am
--edited, as a duped answer that does not work....
December 16, 2010 at 5:32 am
i think his new "SQL Spackle" which is code used to fill in the cracks counts as one....
December 15, 2010 at 1:54 pm
For reference, this is readily consumable data: Anyone can copy and paste this sample data into SSMS and then start working.
i changed all your column names.
SELECT 1 As OrderID,1 As...
December 15, 2010 at 1:08 pm
at our shop, it's still starts with the basics:
backup...restore.
then a custom script we wrote munges the data....deletes records and child records based on FK hierarchy...which can be a real pain....
December 15, 2010 at 12:05 pm
it might take a bit of work, but this article teaches you how to read the transaction log that is in full recovery, but no backups to recover with:
http://www.sqlservercentral.com/articles/Transaction+Log/71415/
the author...
December 15, 2010 at 11:13 am
no, you read it right...my attention deficit order only let me read the first eight words of the thread before i came to a conclusion...
Thansk Paul!
December 15, 2010 at 8:32 am
Viewing 15 posts - 8,281 through 8,295 (of 13,469 total)