Viewing 15 posts - 286 through 300 (of 1,554 total)
I actually disagree
The reason I don't like square brackets, is that they was invented so that illegal names would 'become legal'.
What the brackets...
July 23, 2007 at 8:32 am
Is the real question: 'How can I make a copy of these two tables'..?
..or is there something else?
/Kenneth
July 23, 2007 at 8:18 am
Could you post the trigger so we can have a look at it?
Pretty hard to guess what's wrong with it, other than it's probably 'bad' in one way or another......
July 23, 2007 at 8:13 am
It does that when it can't find the object (tablename supplied as a parameter)
This happens if the proc isn't marked as a systemobject and you're standing in another db than...
July 23, 2007 at 8:10 am
Try this:
Change "EXEC vbaicms_dev.dbo.SP_GENERATE_INSERTS auth"
to "EXEC dbo.SP_GENERATE_INSERTS auth"
.. and instead add the dbname with the -d parameter
(-d vbaicms_dev)
...and/or check if the proc SP_GENERATE_INSERTS is marked as a systemobject.
If...
July 23, 2007 at 2:22 am
Best practice #1:
Always use objectnames that *don't* have to use square brackets in order to not crash your code []
/Kenneth
July 23, 2007 at 2:15 am
...or.... don't use illegal names with characters that's not allowed...?
/Kenneth
July 20, 2007 at 8:53 am
Well, imagine you stood in a door, letting people and families into two rooms.
Only one in each family holds a ticket.
The ticketholders goes into one room, all other familymembers goes...
July 20, 2007 at 6:49 am
This really isn't a data- or SQL-problem at all. This is pure display 'nonsense'.
As such, it belongs on the recieving end to format it, not on the querying side.
/Kenneth
July 20, 2007 at 6:38 am
This is going to be based on a lot of assumptions, but I'm using your example as matrix.
It seems to work, though it's 'old style', haven't messed with CTE's that...
July 20, 2007 at 6:35 am
The dll isn't actually there?
Some other dll that the mentioned dll is using is missing?
There is a permission issue on the dll? (or some referenced dll)
...any other reason why the load...
July 20, 2007 at 2:21 am
I do that sometimes, sometimes not. Traditionally, for all except sometimes tempdb, the issue is kinda moot from a performance standpoint, since the activity in master, msdb and model is...
July 19, 2007 at 7:07 am
I usually start out with four arrays...
c: - system/os and binaries
d: - datafiles
e: - translogfiles
f: - misc files, backups, logs etc.. (the 'junk' array)
In some cases you want to expand...
July 19, 2007 at 6:09 am
Still, in which order those 10 percent rows are finally presented to the client are not guranteed to be the same.
/Kenneth
July 19, 2007 at 5:37 am
I usually use the -C parameter when I need to convert chars between ANSI -> OEM or OEM -> ANSI in any of the directions file -> table or table...
July 19, 2007 at 5:19 am
Viewing 15 posts - 286 through 300 (of 1,554 total)