Viewing 15 posts - 4,186 through 4,200 (of 13,463 total)
ahthomas (1/2/2013)
January 2, 2013 at 9:35 am
ahthomas (1/2/2013)
January 2, 2013 at 9:02 am
SQLCrazyCertified (12/31/2012)
I don't exactly follow all the steps you mentioned above.
Can you please provide step by step for example, I want to create a
Linkedserver from SQL to Oracle.
What...
January 1, 2013 at 12:06 pm
mmilodragovich (12/30/2012)
Hi Lowell,This will solve a problem I am having.
Are you able to share your WebReader.zip again?
Thanks in advance.
my original link in the other article is still good, as well...
December 31, 2012 at 5:25 am
arnipetursson (12/28/2012)
December 28, 2012 at 1:20 pm
the key is what criteria to use to find that 1200, or whatever the number actually is;
Create table dbo.UFM_AGENTS (
TS_ID ...
December 28, 2012 at 10:56 am
your trigger needs to refer to a table, just like any other SELECT statement does;
when inside a trigger, you need to use the virtual tables INSERTED or DELETED, depending on...
December 28, 2012 at 9:57 am
i have no problem doing this in either SSMS or Visual Studio; for me it's very common for documentation and help files to be included.
you just right click on the...
December 26, 2012 at 11:55 am
I think the issue is SSMS itself tends to require higher level permissions than you'd think would be required. if you access SMO directly(like from powershell) , ddl_admin or even...
December 21, 2012 at 12:40 pm
reminds me of horrors like this:
CREATE TABLE [SELECT]([SELECT] INT IDENTITY(1,1) NOT NULL PRIMARY KEY )
SELECT [SELECT].[SELECT] FROM [SELECT] WHERE [SELECT] = 1
December 21, 2012 at 10:04 am
this is typically how i do it.
1. do a full backup, just in case.
2. SELECT the rows that in theory, should be affected...we might get a specific row count...
December 21, 2012 at 8:59 am
Shadab Shah (12/21/2012)
December 21, 2012 at 7:48 am
That is an expected error that you will get used to once you get started with SQL.
object names must be unique, otherwise the system cannot map your queries to the...
December 21, 2012 at 6:55 am
wow, thats going to be tough;
the only thing i could think of was a combination of opc.three's example, and joining it against a list of common suffixes to find potential...
December 21, 2012 at 5:54 am
I've seen that situation where they are using CHAR(160) , which is a fixed width character that *looks* like a space, but isn't a REAL space (CHAR(32))
if you use that,...
December 20, 2012 at 2:29 pm
Viewing 15 posts - 4,186 through 4,200 (of 13,463 total)