Viewing 15 posts - 2,311 through 2,325 (of 13,469 total)
koyyatrouser (5/26/2014)
Hi ..I have tried the code. But the whichfile column doesnt populate the file name. Its showing access denied.
Can you please help ?
Access denied is typically because the account...
May 26, 2014 at 7:44 pm
RedBirdOBX (5/23/2014)
That sounds like a plan! Could you please explain how you "i script out the DDL differences between the developers' version, and production"?Thanks a million!
There's lots of tools that...
May 23, 2014 at 8:30 pm
here's what i do:
i script out the DDL differences between the developers' version, and production;
then i restore a copy of production on dev, and run the script against the database....
May 23, 2014 at 2:43 pm
TheSQLGuru (5/23/2014)
What is posted isn't a catch-all query, at least not a typical one. I see no variables in the code posted.
i'm under the impression that WHERE...
May 23, 2014 at 10:51 am
what you posted is a catch all query.
here's an excellent place to start:
http://sqlinthewild.co.za/index.php/2009/03/19/catch-all-queries/
May 23, 2014 at 9:54 am
SQL server runs as a service, so that assumes an install and a lot more.
for a portable type of application, you'd have to use a portable database; SQL Server Compact,or...
May 22, 2014 at 10:23 am
by simply changing to using a true temp table, isntead of a permenant table which happens to start with tmp, you could fix your concurrency issue.
#temp tables are unique to...
May 22, 2014 at 5:58 am
well, it's kind of hard, because you have to split the string into parts based on hte ampersand, and then reconstruct the string all over again.
this would normally be fixed...
May 22, 2014 at 5:22 am
the other folks have undoubtedly nailed int; if you needed to migrate those exact values you'd need to use IDENTITY_INSERT and insert the existing values explicitly.
SET IDENTITY_INSERT NewTable ON
INSERT INTO...
May 22, 2014 at 5:06 am
i suspect that's not the exact sameversion then, my apologies. i assumed it was the same.
this is the exact version i am using; does this help?
May 21, 2014 at 10:56 am
no find and replace required;
check the name of the instance, and also make sure the instance is running in services.
for example, if i go to the services applet in administrative...
May 21, 2014 at 10:36 am
this is my go-to script for this issue:
Login to the server itself, make sure you have local admin rights on the operating system side of things.
Now simply download and run...
May 21, 2014 at 9:34 am
quick guess before i get back to work:
SELECT * FROM #tmp T1 LEFT OUTER JOIN #tmp T2 ON T1.[ROWID] = T2.[ROWID] -1
and we expect you to provide the...
May 20, 2014 at 11:06 am
also, HOW are you checking to see if a function exists or not?'
if you query sys.objects directly, or are using the SSMS GUI and expecting it to appear there? the...
May 15, 2014 at 7:21 am
you'll have to find and replace with entities that html does recognize, i think
SELECT
REPLACE(
REPLACE(
REPLACE(' ...
May 13, 2014 at 12:01 pm
Viewing 15 posts - 2,311 through 2,325 (of 13,469 total)