Viewing 15 posts - 256 through 270 (of 1,219 total)
Chris makes an excellent point. If there is no such mechanism, maybe you should add one. All assuming that this particular group is entirely ad hoc.
August 9, 2019 at 8:35 pm
If I get this correctly (and I did look very closely at it), you need to push your current query into a common table expression (CTE), so that you can...
August 9, 2019 at 7:08 pm
I'm afraid that I cannot make out much of your post. It appears that your query has been truncated. Not that I know how much help it would be to...
August 9, 2019 at 6:42 pm
Looks like you are in the entirely wrong forum. This is a forum for SQL Server questions. You need to find a place where they discuss Excel.
August 8, 2019 at 7:24 pm
Originally, when SQL Server was released, you could use both singe quote(') and double quote(") as string delimiter. However, when SQL was standardised, it was decided that only single quote...
August 1, 2019 at 8:23 am
I am still not sure that I understand. If you don't want to compute the hash value on update, just don't run that UPDATE statement. Or what am I missing?
July 30, 2019 at 12:38 pm
Any chance you could clarify your question? I don't really follow what you are asking for.
July 30, 2019 at 9:50 am
I have no idea what was going on, but I'm curious what error message did you get when writes did not commit?
July 25, 2019 at 7:34 am
You need to learn about data types. An expression in SQL Server has a static data type. CASE is an expression. And thus, a CASE always return the one and...
July 23, 2019 at 9:49 am
SSDT is a free add-in to the Visual Studio shell. It is somewhat confusing. Sue says that it replace BIDS, and that is true, but SSDT has two faces. Originally,...
July 16, 2019 at 7:24 am
Doing that in a stored procedure? Ouch! Lot's of string parsing to do. Not fun in T-SQL.
Have a look at SSDT (SQL Server Data Tools). It will find such errors.
July 15, 2019 at 8:51 pm
The actual name of the a #temp is somewhat longer - to ensure that two processes do not clash.
A #temp table is always dropped when the scope in which it...
July 15, 2019 at 1:29 pm
A #temp is local to the process and disappears when the procedure exits. A global ##temp table can be seen by all processes and goes away when the process that...
July 15, 2019 at 11:14 am
All users have the right to create temp tables, and as far as I know that cannot be revoked.
You are creating permanent tables, and that is never going to work...
July 15, 2019 at 9:52 am
Your format specifies 16 fields, but the data fields only has 15 fields. The format file has a field OverrideSIRIUSPartyNameCheck, which appears to be missing in the data file. When...
July 8, 2019 at 5:09 pm
Viewing 15 posts - 256 through 270 (of 1,219 total)