Viewing 15 posts - 1,966 through 1,980 (of 2,037 total)
Hi Al
Sorry, my misstake! It seems that this function is new in SQL Server 2008.
Greets
Flo
March 9, 2009 at 8:51 am
Hi
Only a suggestion:
Maybe you select only one value from INSERTED instead of working with the bulk set of data within?
Greets
Flo
March 9, 2009 at 6:21 am
Hi
Yet another way
[font="Courier New"]
DECLARE @sql NVARCHAR(MAX)
SET @sql = ''
SELECT @sql = @sql + CASE WHEN LEN(@sql) != 0 THEN 'UNION ALL ' ELSE '' END + 'SELECT * FROM '...
March 9, 2009 at 6:19 am
Hi Justin
What are the criteria to aggregate the time spans?
Greets
Flo
March 8, 2009 at 6:58 pm
Thank you for translation! In my company the "OP" is the "operational process" but I've been quiet sure that you have been talking about something else ;).
Greets
Flo
March 8, 2009 at 6:47 pm
Hi Jeff
Sorry for the stupid question... What means "OP" ? Sometimes I hate all these acronyms :w00t: ...
Thank you
Flo
March 8, 2009 at 6:31 pm
Hi Jeff
Sure the xp_cmdshell is part of the master. First I saw the error messages of the BCP and I thought this is the only problem.
Thanks for the correction!
Greets
Flo
March 8, 2009 at 4:21 pm
Hi Jeff
He said:
The rest of devices and anchors associated to them, that do not match this condition should be deleted.
I just did not read the part with the anchors 🙂
Greets
Flo
March 8, 2009 at 4:18 pm
Hello
Just read the error messages 😉
Error = [Microsoft][SQL Native Client]Named Pipes Provider: Could not open a connection to SQL Server [2].
SQLState = HYT00, NativeError = 0
Error = [Microsoft][SQL Native...
March 8, 2009 at 8:04 am
Mohit (3/7/2009)
I am not sure how well backups compress with standard compression tools; but tools like RedGate Backup work nicely to compress it before...
March 8, 2009 at 6:24 am
Hi
The (non-)uniqueness is a commo problem. Maybe after fixing the problem you should think about an unique index on device table identifier/user_id.
Your current case:
* First you have to identify the...
March 8, 2009 at 6:13 am
Okay, my interpretation 🙂
If you need the columns of a table:
SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'yourTableName'
BTW:
You should avoid SQL keywords as table or column names (object, master).
Greets
Flo
March 8, 2009 at 5:29 am
Hi % 🙂
ab5sr (3/7/2009)
March 8, 2009 at 4:08 am
Mike Levan (3/7/2009)
As we know CONVERT and CAST has similar functionality but which one wud be best? and is there any diffrence between them.
Basically they have the same job but...
March 7, 2009 at 3:26 pm
Mike Levan (3/7/2009)
As you said can the 'pseudo value' be null? hoes does it " NULL" effect in joins or unions.thanks
Sure NULL values will not be included if you join...
March 7, 2009 at 3:21 pm
Viewing 15 posts - 1,966 through 1,980 (of 2,037 total)